aaron 01/11/16 17:57:38
Modified: flood configure.in
Log:
I didn't mean to get rid of the EXTRA_* macros that are substututed
directly into the Makefile.
Also, sometimes gcc (eg. linux) needs -rpath the same way solaris
does -R. This seems to work here, but I still think there's got to
be a better way.
Revision Changes Path
1.9 +6 -0 httpd-test/flood/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/httpd-test/flood/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- configure.in 2001/11/16 23:10:36 1.8
+++ configure.in 2001/11/17 01:57:37 1.9
@@ -37,6 +37,7 @@
LDFLAGS="$LDFLAGS -R${fl_openssl_prefix}/lib"
;;
*linux*)
+ LDFLAGS="$LDFLAGS -rpath ${fl_openssl_prefix}/lib"
;;
esac
@@ -117,6 +118,11 @@
fi
fi
fi
+
+EXTRA_CFLAGS="$CFLAGS"
+EXTRA_CPPFLAGS="$CPPFLAGS"
+EXTRA_LDFLAGS="$LDFLAGS"
+EXTRA_LIBS="$LIBS"
AC_SUBST(OPENSSL_PREFIX)
AC_SUBST(RANDFILE)