Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 62046 invoked by uid 500); 17 Nov 2001 02:11:31 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 62035 invoked from network); 17 Nov 2001 02:11:31 -0000 Date: 17 Nov 2001 01:57:38 -0000 Message-ID: <20011117015738.6393.qmail@icarus.apache.org> From: aaron@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/flood configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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)