summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-05-26 17:22:24 +0200
committerKarolin Seeger <kseeger@samba.org>2010-06-18 08:33:31 +0200
commit1016be19742a379531c0547a6f768562dc3a8efd (patch)
tree005ab2b754f777b6a14b20110ac2c5e24584ab75
parente9cda33a7d399de293b0586463939a434cc2aa3c (diff)
downloadsamba-1016be19742a379531c0547a6f768562dc3a8efd.tar.gz
s3:Makefile: add missing linker flags for smbfilter
this should fix the AIX build (cherry picked from commit 634577b29d8eea085c79e35d34d6e242a0a9f5a2)
-rw-r--r--source3/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 10a5b939cd9..6030a10124a 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -1779,7 +1779,7 @@ bin/debug2html@EXEEXT@: $(BINARY_PREREQS) $(DEBUG2HTML_OBJ) @BUILD_POPT@ $(LIBTA
bin/smbfilter@EXEEXT@: $(BINARY_PREREQS) $(SMBFILTER_OBJ) @BUILD_POPT@ $(LIBTALLOC) $(LIBTDB) $(LIBWBCLIENT)
@echo Linking $@
- @$(CC) -o $@ $(SMBFILTER_OBJ) $(LDFLAGS) $(LIBS) \
+ @$(CC) -o $@ $(SMBFILTER_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \
$(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \
@LIBWBCLIENT_STATIC@ $(LIBWBCLIENT_LIBS) \
$(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(ZLIB_LIBS)