[Mono-bugs] [Bug 30033][Wis] Changed - Mono doesn't build with automake-1.6
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
15 Oct 2002 13:36:28 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by vargaz@freemail.hu.
http://bugzilla.ximian.com/show_bug.cgi?id=30033
--- shadow/30033 Tue Oct 1 17:53:21 2002
+++ shadow/30033.tmp.15419 Tue Oct 15 09:36:28 2002
@@ -63,6 +63,25 @@
------- Additional Comments From duncan@ximian.com 2002-10-01 17:53 -------
I just tried it and it still doesn't work for me.
It would be great if we can have Makefiles that support both
automake-1.4 and automake-1.6.
+
+------- Additional Comments From vargaz@freemail.hu 2002-10-15 09:36 -------
+Are you getting this message: ?
+
+configure.in:499: CFLAGS was already defined in condition TRUE, which
+implies condition PLATFORM_WIN32_TRUE
+
+If you do, this is caused by this line in interpreter/Makefile.am:
+CFLAGS += -O
+
+Apparently, automake 1.6 does not like the (re)definition of variables
+inside conditionals. Changing the above line to:
+
+mint_CFLAGS = $(CFLAGS) -O
+
+helps, and I believe the semantics stays the same.
+
+
+