dreid 2003/11/16 15:00:45
Modified: . configure.in
Log:
Now that I've been building apr-util with a berekely db on the system
it's become apparent that the EXTRA_OS_LIBS weren't being set correctly.
As the other case was doing it correct BeOS will now use the same settings
though I've left the comment as it's useful to know why :)
Revision Changes Path
1.71 +1 -5 apr-util/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr-util/configure.in,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- configure.in 28 Aug 2003 17:29:07 -0000 1.70
+++ configure.in 16 Nov 2003 23:00:45 -0000 1.71
@@ -124,17 +124,13 @@
EXTRA_OS_LINK=""
host_alias=`uname -s`
case "$host_alias" in
-*BeOS*)
dnl ### BeOS requires that ALL symbols resolve at LINK time!
dnl ###
dnl ### So, if we're building on BeOS then we need to add in the
dnl ### apr and expat libraries to the build or it'll die a truly
horrible
dnl ### death. We now use the apr-config tool to determine the correct
dnl ### library to link against :)
- aprlib=`$apr_config --link-libtool`
- EXTRA_OS_LINK="$aprlib $top_builddir/xml/expat/lib/libexpat.la"
- ;;
-*AIX*|*Darwin*)
+*AIX*|*Darwin*|*BeOS*)
dnl need such stuff as -liconv to be specified when building
libaprutil.la
EXTRA_OS_LINK='$(APRUTIL_LDFLAGS) $(APRUTIL_LIBS)'
;;