package cxxtools
tags 526341 + patch
thanks

Here's a one-line patch to fix the issues compiling cxxtools with the latest 
libtool.  It seems libtool 2.2 skips building the static version of the 
library if "-shared" is on the link command line.
-- 
Daniel Schepler

--- cxxtools-1.4.8.old/src/Makefile.am	2008-05-04 16:26:44.000000000 +0000
+++ cxxtools-1.4.8/src/Makefile.am	2009-05-05 01:53:18.000000000 +0000
@@ -47,5 +47,5 @@
 
 libcxxtools_la_LIBADD = $(DLLIBADD) $(LIBICONV)
 libcxxtools_la_CXXFLAGS = $(PTHREAD_CFLAGS)
-libcxxtools_la_LDFLAGS = -version-info @sonumber@ $(PTHREAD_LIBS) @SHARED_LIB_FLAG@
+libcxxtools_la_LDFLAGS = -version-info @sonumber@ $(PTHREAD_LIBS)
 

Reply via email to