Hi Kaffe developers,

the boehm-gc configure script is executed always, even though the
kaffe-gc garbage collector is used. This cause for me trouble because
the boehm-gc requires a pthread implementation, which we don't have
(DROPS & L4Env), so that the configure script aborts. The attached diff
solves this by moving the boehm-gc stuff within the configure.ac to the
right place (I hope). Can you please have a look at it and update the  cvs ?

Thx, best regards,

Alex.
Index: configure.ac
===================================================================
RCS file: /cvs/kaffe/kaffe/configure.ac,v
retrieving revision 1.159
diff -u -r1.159 configure.ac
--- configure.ac	7 Aug 2005 22:58:05 -0000	1.159
+++ configure.ac	12 Aug 2005 19:39:37 -0000
@@ -1165,10 +1165,11 @@
 	esac
 
 	ac_configure_args="$ac_configure_args --enable-libgc-convenience"
-fi
-AC_CONFIG_SUBDIRS([kaffe/kaffevm/boehm-gc/boehm])
 
-AC_SUBST(BOEHMGC_SPECIFIC_FLAGS)
+	AC_CONFIG_SUBDIRS([kaffe/kaffevm/boehm-gc/boehm])
+
+	AC_SUBST(BOEHMGC_SPECIFIC_FLAGS)
+fi
 
 AC_MSG_RESULT($GC_NAME)
 
_______________________________________________
kaffe mailing list
[email protected]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe

Reply via email to