|
From: <cn...@us...> - 2009-11-03 18:50:40
|
Revision: 597
http://hgengine.svn.sourceforge.net/hgengine/?rev=597&view=rev
Author: cnlohr
Date: 2009-11-03 18:50:32 +0000 (Tue, 03 Nov 2009)
Log Message:
-----------
add options for liberty
Modified Paths:
--------------
Mercury2/base_set.sh
Mercury2/cnconfigure
Modified: Mercury2/base_set.sh
===================================================================
--- Mercury2/base_set.sh 2009-11-03 08:24:44 UTC (rev 596)
+++ Mercury2/base_set.sh 2009-11-03 18:50:32 UTC (rev 597)
@@ -46,6 +46,7 @@
NEED_H="stdio.h stdlib.h"
WANT_H="time.h"
+WANT_L="iberty"
CC_BASE="$CC_BASE -I."
NEED_L="m c z pthread png pthread";
Modified: Mercury2/cnconfigure
===================================================================
--- Mercury2/cnconfigure 2009-11-03 08:24:44 UTC (rev 596)
+++ Mercury2/cnconfigure 2009-11-03 18:50:32 UTC (rev 597)
@@ -100,7 +100,7 @@
done
for i in $WANT_L; do
- if CheckForLib "$i"; then echo "#define _HAVE_LIB_$i" >> configuration.h; fi
+ if CheckForLib "$i"; then echo "#define _HAVE_LIB_$i" >> configuration.h; LDFLAGS="$LDFLAGS -l$i"; fi
done
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|