diff options
author | Tim Potter <tpot@samba.org> | 2001-01-15 23:53:33 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-01-15 23:53:33 +0000 |
commit | 6d61f11788b8868e3396559307157edd1f39a84f (patch) | |
tree | 48a6417b94210e7841c7e0644512311b9fa18488 | |
parent | 7f31d4ab1da72fe1dd52c7ecc1c758e210b6d38d (diff) | |
download | samba-6d61f11788b8868e3396559307157edd1f39a84f.tar.gz samba-6d61f11788b8868e3396559307157edd1f39a84f.tar.xz samba-6d61f11788b8868e3396559307157edd1f39a84f.zip |
Some ugly mucking around to get the new rpcclient compiling and linking
with the new samr code and have prototypes working and smbd linking.
-rw-r--r-- | source/Makefile.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/source/Makefile.in b/source/Makefile.in index 48a1b9e5458..b5b886c83df 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -147,6 +147,13 @@ RPC_PARSE_OBJ = rpc_parse/parse_lsa.o rpc_parse/parse_net.o \ rpc_parse/parse_spoolss.o rpc_parse/parse_dfs.o \ rpc_parse/parse_creds.o +RPC_PARSE_NEW_OBJ = rpc_parse/parse_lsa.o rpc_parse/parse_net.o \ + rpc_parse/parse_reg.o rpc_parse/parse_rpc.o \ + rpc_parse/parse_samr_new.o rpc_parse/parse_srv.o \ + rpc_parse/parse_wks.o \ + rpc_parse/parse_spoolss.o rpc_parse/parse_dfs.o \ + rpc_parse/parse_creds.o + RPC_CLIENT_OBJ = \ rpc_client/cli_login.o \ rpc_client/cli_netlogon.o \ @@ -261,7 +268,7 @@ RPCCLIENT_OBJ1 = rpcclient/rpcclient.o rpcclient/cmd_lsarpc.o \ RPCCLIENT_OBJ = $(RPCCLIENT_OBJ1) \ $(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) \ - $(RPC_PARSE_OBJ) $(PASSDB_OBJ) $(LIBMSRPC_OBJ) + $(RPC_PARSE_NEW_OBJ) $(PASSDB_OBJ) $(LIBMSRPC_OBJ) PAM_WINBIND_OBJ = nsswitch/pam_winbind.po nsswitch/wb_common.po @@ -329,7 +336,8 @@ SMBFILTER_OBJ = utils/smbfilter.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) PROTO_OBJ = $(SMBD_OBJ) $(NMBD_OBJ) $(SWAT_OBJ) $(CLIENT_OBJ) \ - $(SMBWRAPPER_OBJ) $(SMBTORTURE_OBJ) $(RPCCLIENT_OBJ1) $(LIBMSRPC_OBJ) + $(SMBWRAPPER_OBJ) $(SMBTORTURE_OBJ) $(RPCCLIENT_OBJ) \ + $(LIBMSRPC_OBJ) NSS_OBJ_0 = nsswitch/wins.o $(PARAM_OBJ) $(UBIQX_OBJ) $(LIBSMB_OBJ) $(LIB_OBJ) $(NSSWINS_OBJ) NSS_OBJ = $(NSS_OBJ_0:.o=.po) |