added test for hpux. if matched, compile zlib with -fpic instead of -fPIC
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 2 Mar 2001 22:48:39 +0000 (22:48 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 2 Mar 2001 22:48:39 +0000 (22:48 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@18 a5681a0c-68f1-0310-ab6d-d61299d08faa

configure.in
libraries/zlib-1.1.3/Makefile.am

index 3466c45..d8a27e7 100644 (file)
@@ -148,12 +148,14 @@ fi
 dnl add pic flag in any case this makes sure all our code is relocatable
 CFLAGS="$CFLAGS "`grep pic_flag= libtool | sed -e 's/.*pic_flag=//' -e 's/"//g'`
 
+ZLIB_CFLAGS=$CFLAGS
 dnl it seems that hpux chockes on -fPIC for some reason
 case $target_os in
 *hpux*)
-       CLFAGS=`echo $CFLAGS|sed -e 's/-fPIC/-fpic/g'`
+        ZLIB_CFLAGS=`echo $CFLAGS|sed -e 's/-fPIC/-fpic/g'`
 ;;
 esac
+AC_SUBST(ZLIB_CFLAGS)
 
 dnl Checks for library functions.
 AC_FUNC_STRFTIME
index 457db90..6eda278 100644 (file)
@@ -8,6 +8,8 @@
 
 EXTRA_DIST= ChangeLog FAQ INDEX README README.rrdtool algorithm.txt zlib.dsp zlib.dsw zlib.3 
 
+CFLAGS = $(ZLIB_CFLAGS)
+
 noinst_LTLIBRARIES = librrd_z.la
 
 librrd_z_la_SOURCES =  \