rse 98/03/16 10:36:18
Modified: src Configure
Log:
Shared object support for UnixWare 2.1.x (still not tested but according to
the manpages of 2.1.2 this should be correct)
Revision Changes Path
1.210 +8 -0 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- Configure 1998/03/15 17:03:53 1.209
+++ Configure 1998/03/16 18:36:17 1.210
@@ -741,6 +741,14 @@
LDFLAGS_SHLIB="-shared -expect_unresolved '*' -msym -s"
LDFLAGS_SHLIB_EXPORT=""
;;
+ *-unixware21*)
+ case $CC in
+ */gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
+ */cc|cc ) CFLAGS_SHLIB="-KPIC" ;;
+ esac
+ LDFLAGS_SHLIB="-Bdynamic -G"
+ LDFLAGS_SHLIB_EXPORT=""
+ ;;
esac
fi