summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-11-15 12:23:46 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-11-15 11:43:05 +0000
commitf91b7b5dab904613bd48f663ba768521995ed9e6 (patch)
tree99e8684b326eb9df7fd3a6daf25e5d45d563b802
parent88d694ac8e808a22495dcdd6af181f4738c1f21c (diff)
downloadsamba-f91b7b5dab904613bd48f663ba768521995ed9e6.tar.gz
samba-f91b7b5dab904613bd48f663ba768521995ed9e6.tar.bz2
samba-f91b7b5dab904613bd48f663ba768521995ed9e6.zip
nbtd: Build service as shared module.
-rw-r--r--source4/nbt_server/wscript_build3
-rw-r--r--source4/smbd/wscript_build10
2 files changed, 7 insertions, 6 deletions
diff --git a/source4/nbt_server/wscript_build b/source4/nbt_server/wscript_build
index 6fe64a4d93..252a9b8123 100644
--- a/source4/nbt_server/wscript_build
+++ b/source4/nbt_server/wscript_build
@@ -42,6 +42,7 @@ bld.SAMBA_MODULE('service_nbtd',
source='nbt_server.c',
subsystem='service',
init_function='server_service_nbtd_init',
- deps='NBT_SERVER process_model'
+ deps='NBT_SERVER process_model',
+ internal_module=False,
)
diff --git a/source4/smbd/wscript_build b/source4/smbd/wscript_build
index 3a590499d5..0d91d4160b 100644
--- a/source4/smbd/wscript_build
+++ b/source4/smbd/wscript_build
@@ -1,11 +1,11 @@
#!/usr/bin/env python
bld.SAMBA_LIBRARY('service',
- source='service.c service_stream.c service_named_pipe.c service_task.c',
- autoproto='service_proto.h',
- deps='tevent MESSAGING samba_socket RPC_NDR_IRPC NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi credentials LIBTSOCKET LIBSAMBA_TSOCKET process_model',
- private_library=True
- )
+ source='service.c service_stream.c service_named_pipe.c service_task.c',
+ autoproto='service_proto.h',
+ deps='tevent MESSAGING samba_socket RPC_NDR_IRPC NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi credentials LIBTSOCKET LIBSAMBA_TSOCKET process_model',
+ private_library=True
+ )
bld.SAMBA_SUBSYSTEM('PIDFILE',