dreid 01/04/27 08:43:57
Modified: build apr_hints.m4
Log:
This change gets BeOS building again. We have sigsuspend but we certainly
don't have pthread_ so we need to use sigprocmask the same as OS/390.
Also, change where the libraries are added. This may not be right, but
with this change it's possible to get APR building as a shared library.
Revision Changes Path
1.8 +3 -3 apr/build/apr_hints.m4
Index: apr_hints.m4
===================================================================
RCS file: /home/cvs/apr/build/apr_hints.m4,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- apr_hints.m4 2001/04/19 07:43:06 1.7
+++ apr_hints.m4 2001/04/27 15:43:56 1.8
@@ -363,9 +363,9 @@
PLATOSVERS=`uname -r`
case $PLATOSVERS in
5.1)
- APR_ADDTO(CPPFLAGS, [-I/boot/develop/headers/bone])
- APR_ADDTO(LDFLAGS, [-nodefaultlibs -L/boot/develop/lib/x86
-L/boot/beos/system/lib])
- APR_ADDTO(EXTRA_LIBS, [-lbind -lsocket -lbe -lroot])
+ APR_ADDTO(CPPFLAGS, [-I/boot/develop/headers/bone
-DSIGPROCMASK_SETS_THREAD_MASK])
+ APR_ADDTO(LDFLAGS, [-L/boot/develop/lib/x86
-L/boot/beos/system/lib -lbind -lsocket])
+ APR_ADDTO(LIBS, [-lbind -lsocket -lbe -lroot])
;;
esac
;;