diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-05-03 09:33:17 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-08 11:00:23 +0200 |
commit | 2c569cd8ba70e1aba30019618e759866c55eff30 (patch) | |
tree | b9a85cff8a481ea51834757421d2b65c0cd081ee /source3 | |
parent | 7e4ba48135608b5c93cfa4e15f5e4e2c0788d61e (diff) | |
download | samba-2c569cd8ba70e1aba30019618e759866c55eff30.tar.gz samba-2c569cd8ba70e1aba30019618e759866c55eff30.tar.bz2 samba-2c569cd8ba70e1aba30019618e759866c55eff30.zip |
s3-waf: expose the server_exit code in the smbd_base library
these functions are called from the rest of smbd_base
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript_build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index c6bc91303d..0498a9ac9f 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -343,7 +343,7 @@ WINBINDD_SRC = '''${WINBINDD_SRC1} MANGLE_SRC = '''smbd/mangle.c smbd/mangle_hash.c smbd/mangle_hash2.c''' -SMBD_SRC_MAIN = '''smbd/server.c smbd/server_exit.c smbd/msg_idmap.c''' +SMBD_SRC_MAIN = '''smbd/server.c smbd/msg_idmap.c''' BUILDOPT_SRC = '''smbd/build_options.c''' @@ -388,6 +388,7 @@ SMBD_SRC_SRV = '''smbd/server_reload.c smbd/files.c smbd/connection.c smbd/smb2_getinfo.c smbd/smb2_setinfo.c smbd/smb2_break.c + smbd/server_exit.c ${MANGLE_SRC}''' SMBD_SRC_BASE = '''${SMBD_SRC_SRV} |