diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-14 16:51:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:48 -0500 |
commit | 1817b3d4a533ca548141fec473843414c4a4196d (patch) | |
tree | 0c10212caaa2b31207ca9152f100451aa0386d53 /source4/libcli/auth/gensec.mk | |
parent | 836f6ea0bfea0721c55fc155f6f4b19a1316c1ef (diff) | |
download | samba-1817b3d4a533ca548141fec473843414c4a4196d.tar.gz samba-1817b3d4a533ca548141fec473843414c4a4196d.tar.bz2 samba-1817b3d4a533ca548141fec473843414c4a4196d.zip |
r3735: Allow building subsystems as static libraries (.a files). To enable
this support, run SUBSYSTEM_OUTPUT_TYPE=STATIC_LIBRARY ./config.status
I haven't enabled this by default because there are some circular dependencies
in the makefile that have to be resolved first (LIBRPC depends on LIBSMB
and LIBSMB depends on LIBRPC..)
(This used to be commit fc0432069bf3569a47a7c32f4bf789cec2ca44db)
Diffstat (limited to 'source4/libcli/auth/gensec.mk')
-rw-r--r-- | source4/libcli/auth/gensec.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/libcli/auth/gensec.mk b/source4/libcli/auth/gensec.mk index b6332bd68b..30da8aaa0e 100644 --- a/source4/libcli/auth/gensec.mk +++ b/source4/libcli/auth/gensec.mk @@ -19,7 +19,7 @@ ADD_OBJ_FILES = \ libcli/auth/kerberos.o \ libcli/auth/kerberos_verify.o \ libcli/auth/gssapi_parse.o -REQUIRED_SUBSYSTEMS = GENSEC EXT_LIB_KRB5 +REQUIRED_SUBSYSTEMS = EXT_LIB_KRB5 # End MODULE gensec_krb5 ################################################ @@ -31,7 +31,6 @@ INIT_FUNCTION = gensec_spnego_init INIT_OBJ_FILES = libcli/auth/spnego.o ADD_OBJ_FILES = \ libcli/auth/spnego_parse.o -REQUIRED_SUBSYSTEMS = GENSEC # End MODULE gensec_spnego ################################################ @@ -45,6 +44,6 @@ ADD_OBJ_FILES = \ libcli/auth/ntlmssp.o \ libcli/auth/ntlmssp_parse.o \ libcli/auth/ntlmssp_sign.o -REQUIRED_SUBSYSTEMS = GENSEC AUTH +REQUIRED_SUBSYSTEMS = AUTH # End MODULE gensec_ntlmssp ################################################ |