diff options
author | Tim Potter <tpot@samba.org> | 2001-05-17 06:08:49 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-05-17 06:08:49 +0000 |
commit | 2d27d8c720b705e8ca9575682948c0750c1bb080 (patch) | |
tree | 279642be0c653bb1215685164b623dba9d96d462 /source3/Makefile.in | |
parent | 89de0c46ad994bd15217b4eb6c8d3793e35ffb92 (diff) | |
download | samba-2d27d8c720b705e8ca9575682948c0750c1bb080.tar.gz samba-2d27d8c720b705e8ca9575682948c0750c1bb080.tar.bz2 samba-2d27d8c720b705e8ca9575682948c0750c1bb080.zip |
Fixes to get pam_auth() functionality working again.
(This used to be commit 083b74c743f0026693fa0fbe665ed08a3ac706b8)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index dbbf4b717d..89ea6d4282 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -368,10 +368,17 @@ WINBINDD_OBJ1 = \ nsswitch/winbindd_sid.o \ nsswitch/winbindd_misc.o +UNECESSARY_BECAUSE_SAMBA_DEPENDENCIES_ARE_SO_BROKEN_OBJ = \ + smbd/password.o smbd/session.o smbd/uid.o smbd/sec_ctx.o \ + rpc_client/cli_netlogon.o rpc_client/cli_login.o \ + smbd/chgpasswd.o + WINBINDD_OBJ = \ $(WINBINDD_OBJ1) $(NOPROTO_OBJ) $(PASSDB_OBJ) \ $(LIBNMB_OBJ) $(PARAM_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) \ - $(LIBSMB_OBJ) $(LIBMSRPC_OBJ) $(RPC_PARSE_OBJ) $(GROUPDB_OBJ) + $(LIBSMB_OBJ) $(LIBMSRPC_OBJ) $(RPC_PARSE_OBJ) \ + $(GROUPDB_OBJ) \ + $(UNECESSARY_BECAUSE_SAMBA_DEPENDENCIES_ARE_SO_BROKEN_OBJ) WBINFO_OBJ = nsswitch/wbinfo.o @@ -407,6 +414,8 @@ debug2html : CHECK bin/debug2html smbfilter : CHECK bin/smbfilter +nsswitch : CHECK $(WINBIND_PROGS) + .SUFFIXES: .SUFFIXES: .c .o .po .po32 .lo |