summaryrefslogtreecommitdiff
path: root/build/apr_hints.m4
diff options
context:
space:
mode:
authordreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2001-04-27 15:43:56 +0000
committerdreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2001-04-27 15:43:56 +0000
commitc608cf51451c27a17be80d769460e33be6b9102b (patch)
tree2bd63497b8daab0f79ee52879f5c0bf1a6de92a8 /build/apr_hints.m4
parent5f431437bc3ac26739e8fc8b175848baee9c0327 (diff)
downloadlibapr-c608cf51451c27a17be80d769460e33be6b9102b.tar.gz
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. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/apr_hints.m4')
-rw-r--r--build/apr_hints.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/build/apr_hints.m4 b/build/apr_hints.m4
index 266296b33..a06128875 100644
--- a/build/apr_hints.m4
+++ b/build/apr_hints.m4
@@ -363,9 +363,9 @@ dnl # Not a problem in 10.20. Otherwise, who knows?
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
;;