]> arthur.barton.de Git - netatalk.git/commitdiff
Fix db3 compilation on Linux.
authorjmarcus <jmarcus>
Sat, 22 Sep 2001 04:43:19 +0000 (04:43 +0000)
committerjmarcus <jmarcus>
Sat, 22 Sep 2001 04:43:19 +0000 (04:43 +0000)
ChangeLog
configure.in

index e8a52609e3c921fa1458ec5043111db3f9224ddf..5b279ca7b7f6d5c5176798cb55c867915cec22a2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
 
+2001-09-22  joe c   <marcus@marcuscom.com>
+
+       * configure.in: Fix db3 compilation on Linux
+
 2001-09-21  joe c   <marcus@marcuscom.com>
 
        * etc/afpd/desktop.c: Re-enable codepage translations (thanks to
@@ -13,9 +17,6 @@
 
        * etc/afpd/afp_config.c: Fixed a bug where SRVLOC services wouldn't
        show up in OS 9.x
-
-2001-09-19  joe c   <marcus@marcuscom.com>
-
        * libatalk/cnid/cnid_add.c: Fix a bug where some DBT data structures
        were not being memset to NULL correctly.
 
 
        * etc/afpd/afp_options.c: Fix a bug in the custom icon code (thanks to
        Edmund Lam <epl@unimelb.edu.au> for finding this)
-
-2001-09-18  joe c   <marcus@marcuscom.com>
-
        * libatalk/cnid/cnid_open.c: Added db3 version checking code
-
-2001-09-18  joe c   <marcus@marcuscom.com>
-
        * config/afpd.conf.tmpl: Removed uams_guest.so from the default UAMs
        list
 
index 6d37315273d411de6f5490c3376ba97c12c09d5a..7b0af48ee378bd1d48c586d118e0a615a82c0012 100644 (file)
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.104 2001-09-17 13:41:24 rufustfirefly Exp $
+dnl $Id: configure.in,v 1.105 2001-09-22 04:43:19 jmarcus Exp $
 dnl configure.in for netatalk
 
 AC_INIT(bin/adv1tov2/adv1tov2.c)
@@ -262,7 +262,7 @@ AC_ARG_WITH(db3,
 db3_found=no
 for db3dir in "" $trydb3dir /usr /usr /usr/local ; do
        if test -f "$db3dir/include/db3/db.h" ; then
-               LDFLAGS="$LDFLAGS -L$db3dir/lib -ldb3"
+               LDFLAGS="$LDFLAGS -L$db3dir/lib"
                CFLAGS="$CFLAGS -I$db3dir/include/db3"
 
                dnl If we require DB3, die if we don't have it