dreid 2004/03/09 06:39:02
Modified: build apr_hints.m4
Log:
Fixup for library usage by apr.
- remove -lbe and -lroot as they're not needed. (-lroot causes regex problems
and segfaults under httpd)
- remove a standard path that is no longer needed.
Revision Changes Path
1.59 +4 -4 apr/build/apr_hints.m4
Index: apr_hints.m4
===================================================================
RCS file: /home/cvs/apr/build/apr_hints.m4,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- apr_hints.m4 7 Mar 2004 01:29:21 -0000 1.58
+++ apr_hints.m4 9 Mar 2004 14:39:02 -0000 1.59
@@ -335,13 +335,13 @@
APR_SETIFNULL(apr_process_lock_is_global, [yes])
case $PLATOSVERS in
5.0.4)
- APR_ADDTO(LDFLAGS, [-L/boot/develop/lib/x86
-L/boot/beos/system/lib -lbind -lsocket])
- APR_ADDTO(LIBS, [-lbind -lbe -lroot])
+ APR_ADDTO(LDFLAGS, [-L/boot/beos/system/lib])
+ APR_ADDTO(LIBS, [-lbind -lsocket])
APR_ADDTO(CPPFLAGS,[-DBONE7])
;;
5.1)
- APR_ADDTO(LDFLAGS, [-L/boot/develop/lib/x86
-L/boot/beos/system/lib -lbind -lsocket])
- APR_ADDTO(LIBS, [-lbind -lbe -lroot])
+ APR_ADDTO(LDFLAGS, [-L/boot/beos/system/lib])
+ APR_ADDTO(LIBS, [-lbind -lsocket])
;;
esac
APR_ADDTO(CPPFLAGS, [-DSIGPROCMASK_SETS_THREAD_MASK
-DAP_AUTH_DBM_USE_APR])