From: Jan E. <je...@me...> - 2010-12-03 13:42:46
|
On Friday 2010-12-03 06:20, Sebastien Decugis wrote: >Hello, > >I have a compilation error in minitest when trying to compile latest >circum under Ubuntu Natty. The following patch fixes the issue. It >seems that libtool has a different behavior on this platform for some >reason. Since I think there is no harm in this patch, would you >consider applying it? > >--- a/libcircum/Makefile.am >+++ b/libcircum/Makefile.am >@@ -28,7 +28,7 @@ minitest_CFLAGS = ${AM_CFLAGS} \ >-minitest_LDADD = libcircum.la >+minitest_LDADD = libcircum.la ${libHX_LIBS} In fact, this is required (GNU ld was made stricter recently; among it is -Wl,--as-needed, though this did not seem to be the case here), so it's applied. |