diff options
author | Günther Deschner <gd@samba.org> | 2004-11-10 21:49:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:12 -0500 |
commit | f23d3c2cfc99adf93994fe2db23274f382f7470e (patch) | |
tree | 16b90eaf7cf525501807724c6d9b8a97ba4541a9 | |
parent | 17c8907d9c2a89a1f3d271aa58a5d4494a0d4653 (diff) | |
download | samba-f23d3c2cfc99adf93994fe2db23274f382f7470e.tar.gz samba-f23d3c2cfc99adf93994fe2db23274f382f7470e.tar.bz2 samba-f23d3c2cfc99adf93994fe2db23274f382f7470e.zip |
r3668: Fix unresolved symbols in libsmbclient.so.
Patch from Lars Müller <lmuelle@suse.de> ( Bugzilla #2013 )
Guenther
(This used to be commit af3ec11f8d6cae9bbad5dc5f3b9ae6e00bf1dd7e)
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 370017c3ad..730e1a7889 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -991,7 +991,7 @@ bin/smbwrapper.@SHLIBEXT@: $(PICOBJS) bin/.dummy bin/libsmbclient.@SHLIBEXT@: $(LIBSMBCLIENT_PICOBJS) @echo Linking libsmbclient shared library $@ @$(SHLD) $(LDSHFLAGS) -o $@ $(LIBSMBCLIENT_PICOBJS) $(LDFLAGS) $(LIBS) \ - $(KRB5LIBS) $(LDAP_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(SECRETS_OBJ) \ @SONAMEFLAG@`basename $@`.$(LIBSMBCLIENT_MAJOR) bin/libsmbclient.a: $(LIBSMBCLIENT_PICOBJS) |