1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
This commit is contained in:
Stefan Metzmacher 2005-10-14 12:54:52 +00:00 committed by Gerald (Jerry) Carter
parent aecc9ca1cc
commit 6913e33840
13 changed files with 26 additions and 6 deletions

View File

@ -0,0 +1,6 @@
Import('hostenv')
hostenv.StaticLibrary('kerberos',
['kerberos.c','clikrb5.c','kerberos_verify.c',
'kerberos_util.c','kerberos_pac.c','gssapi_parse.c',
'krb5_init_context.c'])

View File

@ -0,0 +1,5 @@
Import('hostenv')
hostenv.StaticLibrary('gensec_ntlmssp',
['ntlmssp_parse.c','ntlmssp.c','ntlmssp_sign.c','ntlmssp_client.c',
'ntlmssp_server.c'])

View File

@ -1,5 +1,4 @@
Import('hostenv')
dsdb_ldb_modules = []
dsdb_ldb_modules.append(

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python
# tastes like -*- python -*-
Import('hostenv')
def _CheckIconvPath(context,path):
# Some systems have iconv in libc, some have it in libiconv (OSF/1 and

View File

@ -1,3 +1,4 @@
Import('hostenv')
# tastes like -*- python -*-
Import('hostenv')

View File

@ -1,5 +1,6 @@
#!/usr/bin/env python
Import('hostenv defines')
conf = Configure(hostenv)
rep_files = ['replace.c', 'snprintf.c','dlfcn.c']

View File

@ -1,6 +1,5 @@
#!/usr/bin/env python
Import('hostenv defines')
if hostenv['configure']:
conf = hostenv.Configure()
for h in ['sys/socket.h','sys/sockio.h','sys/un.h']:

View File

@ -1,5 +1,4 @@
Import('hostenv')
opts = Options(None, ARGUMENTS)
opts.AddOptions(
BoolOption('socket_wrapper','enable socket wrapper',0)

View File

@ -1,5 +1,4 @@
Import('hostenv')
hostenv.Subsystem(
'cli_utils',
['util/asn1.c',

View File

@ -0,0 +1,3 @@
Import('hostenv')
hostenv.StaticLibrary('cli_auth',['credentials.c','session.c','smbencrypt.c'])

View File

@ -0,0 +1,5 @@
Import('hostenv')
hostenv.StaticLibrary('cli_ldap',
['ldap.c','ldap_client.c','ldap_bind.c','ldap_msg.c','ldap_ndr.c',
'ldap_ildap.c'])

View File

@ -0,0 +1,5 @@
Import('hostenv')
hostenv.StaticLibrary('cli_security',
['security_token.c','security_descriptor.c','dom_sid.c',
'access_check.c','privilege.c'])

View File

@ -1,6 +1,5 @@
#!/usr/bin/python
Import('hostenv')
ndr_base_files = ['ndr/ndr.c', 'ndr/ndr_basic.c', 'ndr/ndr_string.c',
'ndr/ndr_obfuscate.c', 'ndr/ndr_misc.c']