mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
r11037:
This commit is contained in:
parent
aecc9ca1cc
commit
6913e33840
6
source/auth/kerberos/SConscript
Normal file
6
source/auth/kerberos/SConscript
Normal 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'])
|
5
source/auth/ntlmssp/SConscript
Normal file
5
source/auth/ntlmssp/SConscript
Normal 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'])
|
@ -1,5 +1,4 @@
|
||||
Import('hostenv')
|
||||
|
||||
dsdb_ldb_modules = []
|
||||
|
||||
dsdb_ldb_modules.append(
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,4 @@
|
||||
Import('hostenv')
|
||||
# tastes like -*- python -*-
|
||||
Import('hostenv')
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
Import('hostenv defines')
|
||||
conf = Configure(hostenv)
|
||||
|
||||
rep_files = ['replace.c', 'snprintf.c','dlfcn.c']
|
||||
|
||||
|
@ -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']:
|
||||
|
@ -1,5 +1,4 @@
|
||||
Import('hostenv')
|
||||
|
||||
opts = Options(None, ARGUMENTS)
|
||||
opts.AddOptions(
|
||||
BoolOption('socket_wrapper','enable socket wrapper',0)
|
||||
|
@ -1,5 +1,4 @@
|
||||
Import('hostenv')
|
||||
|
||||
hostenv.Subsystem(
|
||||
'cli_utils',
|
||||
['util/asn1.c',
|
||||
|
3
source/libcli/auth/SConscript
Normal file
3
source/libcli/auth/SConscript
Normal file
@ -0,0 +1,3 @@
|
||||
Import('hostenv')
|
||||
|
||||
hostenv.StaticLibrary('cli_auth',['credentials.c','session.c','smbencrypt.c'])
|
5
source/libcli/ldap/SConscript
Normal file
5
source/libcli/ldap/SConscript
Normal 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'])
|
5
source/libcli/security/SConscript
Normal file
5
source/libcli/security/SConscript
Normal 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'])
|
@ -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']
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user