diff options
author | Tim Potter <tpot@samba.org> | 2001-08-01 02:12:36 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-08-01 02:12:36 +0000 |
commit | a0cd01e03ce84c2baa19c68c1ad4a68e137deaf8 (patch) | |
tree | a43912c6de55d5f2e261ffc855027c8fe4ef5460 | |
parent | edc22874ad1b856a880c2ad6fb34ee3600f8dd5e (diff) | |
download | samba-a0cd01e03ce84c2baa19c68c1ad4a68e137deaf8.tar.gz samba-a0cd01e03ce84c2baa19c68c1ad4a68e137deaf8.tar.bz2 samba-a0cd01e03ce84c2baa19c68c1ad4a68e137deaf8.zip |
Fixed up compilation of pam_winbind.so to be consistent with value of
--with-pam passed to configure.
Fixed nsswitch target to compile the sbin and lib winbind targets.
Winbind still doesn't install its lib targets (libnss_winbind.so and
pam_winbind.so) properly - the install script is a big mess. )-:
(This used to be commit fc83346a43ba59efcdf415437e6b99e68d2561c5)
-rw-r--r-- | source3/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 043ce839b0..c28583928a 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -78,13 +78,16 @@ FLAGS = $(ISA) $(FLAGS5) $(PASSWD_FLAGS) FLAGS32 = $(ISA32) $(FLAGS5) $(PASSWD_FLAGS) WINBIND_PROGS = bin/wbinfo -WINBIND_SPROGS = bin/winbindd nsswitch/libnss_winbind.so +WINBIND_SPROGS = bin/winbindd WINBIND_PAM_PROGS = nsswitch/pam_winbind.so +WINBIND_LPROGS = @WINBIND_PAM_PROGS@ nsswitch/libnss_winbind.so SPROGS = bin/smbd bin/nmbd bin/swat @WINBIND_STARGETS@ PROGS1 = bin/smbclient bin/smbspool bin/testparm bin/testprns bin/smbstatus bin/smbcontrol bin/smbtree @RUNPROG@ @WINBIND_TARGETS@ PROGS2 = bin/smbpasswd bin/rpcclient bin/smbcacls @WRAP@ @WRAP32@ @PAM_MOD@ MPROGS = @MPROGS@ +LPROGS = @WINBIND_LTARGETS@ + PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/make_printerdef bin/pdbedit TORTURE_PROGS = bin/smbtorture bin/msgtest bin/masktest bin/locktest bin/locktest2 SHLIBS = libsmbclient @@ -424,7 +427,7 @@ debug2html : CHECK bin/debug2html smbfilter : CHECK bin/smbfilter -nsswitch : CHECK @WINBIND_TARGETS@ +nsswitch : CHECK @WINBIND_TARGETS@ @WINBIND_STARGETS@ @WINBIND_LTARGETS@ .SUFFIXES: .SUFFIXES: .c .o .po .po32 .lo |