Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 57454 invoked by uid 500); 5 Sep 2001 16:43:13 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 57438 invoked by uid 500); 5 Sep 2001 16:43:13 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 5 Sep 2001 16:40:35 -0000 Message-ID: <20010905164035.5809.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0 configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 01/09/05 09:40:35 Modified: . configure.in Log: on AIX we need to pass in --disable-shared to apr and apr-util configurations; otherwise we get goofy executable files obviously libtool isn't doing the right thing, but I don't know what that is Revision Changes Path 1.177 +15 -4 httpd-2.0/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/httpd-2.0/configure.in,v retrieving revision 1.176 retrieving revision 1.177 diff -u -r1.176 -r1.177 --- configure.in 2001/09/03 03:07:42 1.176 +++ configure.in 2001/09/05 16:40:35 1.177 @@ -43,15 +43,28 @@ dnl ## Run configure for packages Apache uses +dnl shared library support for these packages doesn't currently +dnl work on some platforms + +AC_CANONICAL_SYSTEM + +case $host in + *-ibm-aix*) + disable_shared="--disable-shared" + ;; + *) + disable_shared="" +esac + orig_prefix="$prefix" echo $ac_n "${nl}Configuring Apache Portable Runtime library ...${nl}" -APR_SUBDIR_CONFIG(srclib/apr, "$apache_apr_flags --prefix=$prefix") +APR_SUBDIR_CONFIG(srclib/apr, "$apache_apr_flags --prefix=$prefix $disable_shared") echo $ac_n "${nl}Configuring Apache Portable Runtime Utility library...${nl}" -APR_SUBDIR_CONFIG(srclib/apr-util, "--with-apr=../apr --prefix=$prefix") +APR_SUBDIR_CONFIG(srclib/apr-util, "--with-apr=../apr --prefix=$prefix $disable_shared") echo $ac_n "${nl}Configuring PCRE regular expression library ...${nl}" @@ -91,8 +104,6 @@ fi echo $ac_n "${nl}Applying OS-specific hints for httpd ...${nl}" - -AC_CANONICAL_SYSTEM case $host in *os2*)