diff options
author | dreid <dreid@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-29 22:11:29 +0000 |
---|---|---|
committer | dreid <dreid@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-29 22:11:29 +0000 |
commit | f47505da130b6b60bcd72646698b921914cab694 (patch) | |
tree | b174c198b3870b26f21eeef1f5da1b2baeef5b77 /build | |
parent | ff54eecd1785fe125090b7825cbf98f48adf494d (diff) | |
download | libapr-f47505da130b6b60bcd72646698b921914cab694.tar.gz |
This option needs to be set for all versions of beos, not just BONE.
With this change we're building again on BeOS R5.
Submitted by: Peter Moore <peter@cdws.com.au>
Reviewed by: David Reid <dreid@apache.org>
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61564 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/apr_hints.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/apr_hints.m4 b/build/apr_hints.m4 index 5df991aa1..730f610a8 100644 --- a/build/apr_hints.m4 +++ b/build/apr_hints.m4 @@ -357,12 +357,13 @@ 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 -DSIGPROCMASK_SETS_THREAD_MASK]) + APR_ADDTO(CPPFLAGS, [-I/boot/develop/headers/bone]) APR_ADDTO(LDFLAGS, [-L/boot/develop/lib/x86 -L/boot/beos/system/lib -lbind -lsocket]) APR_ADDTO(LIBS, [-lbind -lsocket -lbe -lroot]) ;; esac - ;; + APR_ADDTO(CPPFLAGS, [-DSIGPROCMASK_SETS_THREAD_MASK]) + ;; 4850-*.*) APR_ADDTO(CPPFLAGS, [-DSVR4 -DMPRAS]) APR_ADDTO(LIBS, [-lsocket -lnsl -lc -L/usr/ucblib -lucb]) |