1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-31 12:23:52 +03:00

r10586: Add MergedObject() builder. Default to Library() rather

then StaticLibrary()
This commit is contained in:
Jelmer Vernooij
2005-09-28 18:18:09 +00:00
committed by Gerald (Jerry) Carter
parent 908b88843f
commit b53313dc51
45 changed files with 194 additions and 161 deletions

View File

@@ -9,6 +9,6 @@ opts.Update(hostenv)
if hostenv['socket_wrapper']:
hostenv.Append(CPPDEFINES = {'HAVE_SOCKET_WRAPPER': 1})
socket_wrapper = hostenv.StaticLibrary('socket_wrapper',['socket_wrapper.c'])
socket_wrapper = hostenv.Library('socket_wrapper',['socket_wrapper.c'])
else:
socket_wrapper = []