﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	difficulty
1768	Wrong macro added to chicken-config.h in Makefile.cross-linux-mingw	lattay		"
Hi,
I noticed that there is a mistake in Makefile.cross-linux-mingw.
In the process of creating chicken-config.h, this Makefile declares HAVE_ALLOCA_H when it should declare HAVE_ALLOCA only.
Here is a ""patch"":

{{{
diff --git a/Makefile.cross-linux-mingw b/Makefile.cross-linux-mingw
index 929e140..6d6a690 100644
--- a/Makefile.cross-linux-mingw
+++ b/Makefile.cross-linux-mingw
@@ -105,7 +105,7 @@ chicken-config.h: chicken-defaults.h
 	echo ""#define HAVE_UNISTD_H 1"" >>$@
 	echo ""#define HAVE_UNSIGNED_LONG_LONG 1"" >>$@
 	echo ""#define STDC_HEADERS 1"" >>$@
-	echo ""#define HAVE_ALLOCA_H 1"" >>$@
+	echo ""#define HAVE_ALLOCA 1"" >>$@
 	echo ""#define HAVE_DIRECT_H 1"" >>$@
 	echo ""#define HAVE_ERRNO_H 1"" >>$@
 	echo ""#define HAVE_LOADLIBRARY 1"" >>$@
}}}"	defect	closed	minor	5.3	build system	5.2.0	fixed			trivial
