diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-24 06:13:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:39 -0500 |
commit | a524e8cdded5c0975583d7db97de8c61d95b670c (patch) | |
tree | 8fb68b0a935a9b44b2a1a0a96251a56866681e23 /source4/lib/ldb | |
parent | 2d4ecdb3e162551d4c756365937a631c305642d3 (diff) | |
download | samba-a524e8cdded5c0975583d7db97de8c61d95b670c.tar.gz samba-a524e8cdded5c0975583d7db97de8c61d95b670c.tar.bz2 samba-a524e8cdded5c0975583d7db97de8c61d95b670c.zip |
r17770: don't force -L/usr/lib, it breaks us4
(This used to be commit 348aff8c8372b235d42ede35c18f83fd53db99f9)
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/configure.in b/source4/lib/ldb/configure.in index b4618a47c2..4f8640ec67 100644 --- a/source4/lib/ldb/configure.in +++ b/source4/lib/ldb/configure.in @@ -53,7 +53,7 @@ sinclude(replace/config.m4) sinclude(ldap.m4) if test x"$with_ldap_support" = x"yes"; then - LIBS="$LIBS -L/usr/lib -llber -lldap" + LIBS="$LIBS -llber -lldap" CFLAGS="$CFLAGS -DHAVE_LDAP=1" EXTRA_OBJ="$EXTRA_OBJ ldb_ldap/ldb_ldap.o" TESTS="$TESTS test-ldap.sh" @@ -61,7 +61,7 @@ fi sinclude(sqlite3.m4) if test x"$with_sqlite3_support" = x"yes"; then - LIBS="$LIBS -L/usr/lib -lsqlite3" + LIBS="$LIBS -lsqlite3" CFLAGS="$CFLAGS -DHAVE_SQLITE3=1" EXTRA_OBJ="$EXTRA_OBJ ldb_sqlite3/ldb_sqlite3.o" TESTS="$TESTS test-sqlite3.sh" |