summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-05-15 12:45:00 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-05-15 12:45:00 +0000
commitaa79bd39e09efc8a266bd5a15b02117b871ee235 (patch)
treefdee8939f25b2a7233d8c10c4b1d7ac054009126 /configure.in
parentfb57eb5523c6e6837c5466328281df79d6a68d00 (diff)
downloadlibapr-aa79bd39e09efc8a266bd5a15b02117b871ee235.tar.gz
don't hard-code some dll-related flags for OS/390 in
configure.in; libtool should figure out whether or not objects should export their symbols for use in DLLs git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 528bbf049..6aeb301e0 100644
--- a/configure.in
+++ b/configure.in
@@ -819,13 +819,9 @@ AC_ARG_ENABLE(dso,
fi
if test "$tempdso" = "no"; then
case $OS in
- *-os2*)
+ *os390|*-os2*)
tempdso="yes"
;;
- *os390)
- tempdso="yes"
- APR_ADDTO(CFLAGS, [-Wc,DLL,EXPORTALL])
- ;;
esac
fi
] )