diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-04-27 15:08:02 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-05-27 07:13:58 +0200 |
commit | 4afa54fd53cdef1dd8b8e549d77ab02fdec09df4 (patch) | |
tree | 471fe34080c274218613e2a32a3f2d3aa749a776 | |
parent | 9a6636a56e3565202d71ae7049431e3764575b79 (diff) | |
download | samba-4afa54fd53cdef1dd8b8e549d77ab02fdec09df4.tar.gz samba-4afa54fd53cdef1dd8b8e549d77ab02fdec09df4.tar.bz2 samba-4afa54fd53cdef1dd8b8e549d77ab02fdec09df4.zip |
s3:Makefile.in: add npa_tstream.o to the build of smbd
metze
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 16516448b4..72a7315eaa 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -651,12 +651,14 @@ RPC_SPOOLSS_OBJ = rpc_server/srv_spoolss_nt.o \ RPC_EVENTLOG_OBJ = rpc_server/srv_eventlog_nt.o \ $(LIB_EVENTLOG_OBJ) librpc/gen_ndr/srv_eventlog.o +NPA_TSTREAM_OBJ = ../libcli/named_pipe_auth/npa_tstream.o + RPC_PIPE_OBJ = rpc_server/srv_pipe_hnd.o \ rpc_server/srv_pipe.o rpc_server/srv_lsa_hnd.o RPC_ECHO_OBJ = rpc_server/srv_echo_nt.o librpc/gen_ndr/srv_echo.o -RPC_SERVER_OBJ = @RPC_STATIC@ $(RPC_PIPE_OBJ) +RPC_SERVER_OBJ = @RPC_STATIC@ $(RPC_PIPE_OBJ) $(NPA_TSTREAM_OBJ) RPC_PARSE_OBJ = $(RPC_PARSE_OBJ2) |