summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-08-25 22:43:20 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-08-25 22:43:20 +0000
commit066c5ae97fd62109d9e0a5ae417753a1585e14d0 (patch)
tree3fb12d544263ae9fcf855b60675728e48cccb181 /source3/Makefile.in
parent6b9de4f69f6d4f2cb7f28228c70e72837cc745ac (diff)
downloadsamba-066c5ae97fd62109d9e0a5ae417753a1585e14d0.tar.gz
samba-066c5ae97fd62109d9e0a5ae417753a1585e14d0.tar.bz2
samba-066c5ae97fd62109d9e0a5ae417753a1585e14d0.zip
Steve Langasek <vorlon@netexpress.net> has again attempted to simplify Samba's
external lib dependencies - let's hope this patch stays around for longer than the previous attempt. Andrew Bartlett (This used to be commit d0c0e9f427400c24f5cc38c67b7a927f9d937375)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 24ec132fd4..7b958d03c5 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -21,6 +21,7 @@ DYNEXP=@DYNEXP@
TERMLDFLAGS=@TERMLDFLAGS@
TERMLIBS=@TERMLIBS@
+PRINTLIBS=@PRINTLIBS@
LINK=$(CC) $(FLAGS) $(LDFLAGS)
@@ -604,7 +605,7 @@ bin/.dummy:
bin/smbd: $(SMBD_OBJ) bin/.dummy
@echo Linking $@
- @$(CC) $(FLAGS) -o $@ $(SMBD_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS)
+ @$(CC) $(FLAGS) -o $@ $(SMBD_OBJ) $(LDFLAGS) $(DYNEXP) $(PRINTLIBS) $(LIBS)
bin/nmbd: $(NMBD_OBJ) bin/.dummy
@echo Linking $@
@@ -616,7 +617,7 @@ bin/wrepld: $(WREPL_OBJ) bin/.dummy
bin/swat: $(SWAT_OBJ) bin/.dummy
@echo Linking $@
- @$(CC) $(FLAGS) -o $@ $(SWAT_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS)
+ @$(CC) $(FLAGS) -o $@ $(SWAT_OBJ) $(LDFLAGS) $(DYNEXP) $(PRINTLIBS) $(LIBS)
bin/rpcclient: $(RPCCLIENT_OBJ) @BUILD_POPT@ bin/.dummy
@echo Linking $@
@@ -652,7 +653,7 @@ bin/testparm: $(TESTPARM_OBJ) bin/.dummy
bin/testprns: $(TESTPRNS_OBJ) bin/.dummy
@echo Linking $@
- @$(CC) $(FLAGS) -o $@ $(TESTPRNS_OBJ) $(LDFLAGS) $(LIBS)
+ @$(CC) $(FLAGS) -o $@ $(TESTPRNS_OBJ) $(LDFLAGS) $(PRINTLIBS) $(LIBS)
bin/smbstatus: $(STATUS_OBJ) @BUILD_POPT@ bin/.dummy
@echo Linking $@