diff options
author | Victor J. Orlikowski <orlikowski@apache.org> | 2001-04-02 21:06:02 +0200 |
---|---|---|
committer | Victor J. Orlikowski <orlikowski@apache.org> | 2001-04-02 21:06:02 +0200 |
commit | 28f7a845a177eb461f2eb1fd1ffc08fc47763841 (patch) | |
tree | 9201433ea88a45bdc8996c0c1967f1d9af3d515b /configure.in | |
parent | "void *res = signal(blah)" isn't cool 'cause void * is not compatible with (diff) | |
download | apache2-28f7a845a177eb461f2eb1fd1ffc08fc47763841.tar.xz apache2-28f7a845a177eb461f2eb1fd1ffc08fc47763841.zip |
Changes to get AIX DSOs working, sans APR changes.
Basically, this allows linker flags to be passed for the httpd executable
and DSOs only.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88655 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0f71a88191..b308f8aa8c 100644 --- a/configure.in +++ b/configure.in @@ -183,6 +183,10 @@ fi if test "$apache_need_shared" = "yes"; then $SHELL $ac_aux_dir/ltconfig --output=shlibtool --disable-static --srcdir=$ac_aux_dir --cache-file=./config.cache $ac_aux_dir/ltmain.sh case $PLATFORM in + *-ibm-aix*) + HTTPD_LDFLAGS="$HTTPD_LDFLAGS -Wl,-bE:$abs_srcdir/support/httpd.exp" + SH_LDFLAGS="$SH_LDFLAGS -Wl,-bI:$abs_srcdir/support/httpd.exp" + ;; *os390) CFLAGS="$CFLAGS -Wc,DLL,EXPORTALL" ;; |