diff options
author | Jeff Trawick <trawick@apache.org> | 2001-05-01 19:29:34 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-05-01 19:29:34 +0000 |
commit | b4d98575885f3b9f0b4b0c87f175de2859f185e8 (patch) | |
tree | 89045713ec5ffba4e1edd4b67230a2d7ea7d56c0 /configure.in | |
parent | e00b9a0c559a9a3ba40258b35529f9a0de1595ce (diff) | |
download | apr-b4d98575885f3b9f0b4b0c87f175de2859f185e8.tar.gz |
when DSO support is enabled, assume for OS/390 that APR symbols should
be exported and hard-code required CFLAGS for OS/390
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61578 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index dc4d772de..133f94a1c 100644 --- a/configure.in +++ b/configure.in @@ -804,9 +804,13 @@ AC_ARG_ENABLE(dso, fi if test "$tempdso" = "no"; then case $OS in - *os390|*-os2*) + *-os2*) tempdso="yes" ;; + *os390) + tempdso="yes" + APR_ADDTO(CFLAGS, [-Wc,DLL,EXPORTALL]) + ;; esac fi ] ) |