trawick 01/05/01 12:29:35
Modified: . configure.in
Log:
when DSO support is enabled, assume for OS/390 that APR symbols should
be exported and hard-code required CFLAGS for OS/390
Revision Changes Path
1.298 +5 -1 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- configure.in 2001/05/01 04:52:00 1.297
+++ configure.in 2001/05/01 19:29:34 1.298
@@ -804,8 +804,12 @@
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