summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-05-16 03:17:54 +0000
committerTim Potter <tpot@samba.org>2005-05-16 03:17:54 +0000
commitd079fc884e97f8ab3a275020c88af68f6222f981 (patch)
tree86356c1ccdf49d394bb7f8e6e9707e9d33c34a10 /source
parentdf1305495ec6be71b7018097dd8c7c3520e2292a (diff)
downloadsamba-d079fc884e97f8ab3a275020c88af68f6222f981.tar.gz
samba-d079fc884e97f8ab3a275020c88af68f6222f981.tar.xz
samba-d079fc884e97f8ab3a275020c88af68f6222f981.zip
r6810: Rename auth/{ntlmssp,gensec,kerberos} mk and m4 files to be called
config.mk and config.m4 to be consistent with the rest of Samba.
Diffstat (limited to 'source')
-rw-r--r--source/auth/gensec/config.m4 (renamed from source/auth/gensec/gensec.m4)4
-rw-r--r--source/auth/gensec/config.mk (renamed from source/auth/gensec/gensec.mk)0
-rw-r--r--source/auth/kerberos/config.m4 (renamed from source/auth/kerberos/kerberos.m4)1
-rw-r--r--source/auth/kerberos/config.mk (renamed from source/auth/kerberos/kerberos.mk)0
-rw-r--r--source/auth/ntlmssp/config.mk (renamed from source/auth/ntlmssp/ntlmssp.mk)0
-rw-r--r--source/build/smb_build/main.pm6
-rw-r--r--source/configure.in4
7 files changed, 10 insertions, 5 deletions
diff --git a/source/auth/gensec/gensec.m4 b/source/auth/gensec/config.m4
index 4565ce0b971..1af0a1d9c89 100644
--- a/source/auth/gensec/gensec.m4
+++ b/source/auth/gensec/config.m4
@@ -1,8 +1,12 @@
SMB_MODULE_DEFAULT(gensec_krb5, NOT)
SMB_MODULE_DEFAULT(gensec_gssapi, NOT)
+SMB_MODULE_DEFAULT(gensec_gsskrb5, NOT)
if test x"$SMB_EXT_LIB_ENABLE_KRB5" = x"YES"; then
# krb5 is now disabled at runtime, not build time
SMB_MODULE_DEFAULT(gensec_krb5, STATIC)
SMB_MODULE_DEFAULT(gensec_gssapi, STATIC)
+ if test x"$samba_cv_GSS_C_DCE_STYLE" = x"yes"; then
+ SMB_MODULE_DEFAULT(gensec_gsskrb5, STATIC)
+ fi
fi
diff --git a/source/auth/gensec/gensec.mk b/source/auth/gensec/config.mk
index f8d1928585e..f8d1928585e 100644
--- a/source/auth/gensec/gensec.mk
+++ b/source/auth/gensec/config.mk
diff --git a/source/auth/kerberos/kerberos.m4 b/source/auth/kerberos/config.m4
index 6bfe486dd62..b78f96a877e 100644
--- a/source/auth/kerberos/kerberos.m4
+++ b/source/auth/kerberos/config.m4
@@ -491,3 +491,4 @@ if test x"$with_krb5_support" != x"no"; then
fi
SMB_EXT_LIB(KRB5,[${KRB5_LIBS}],[${KRB5_CFLAGS}],[${KRB5_CPPFLAGS}],[${KRB5_LDFLAGS}])
+
diff --git a/source/auth/kerberos/kerberos.mk b/source/auth/kerberos/config.mk
index 38c8862747d..38c8862747d 100644
--- a/source/auth/kerberos/kerberos.mk
+++ b/source/auth/kerberos/config.mk
diff --git a/source/auth/ntlmssp/ntlmssp.mk b/source/auth/ntlmssp/config.mk
index 551c211d71f..551c211d71f 100644
--- a/source/auth/ntlmssp/ntlmssp.mk
+++ b/source/auth/ntlmssp/config.mk
diff --git a/source/build/smb_build/main.pm b/source/build/smb_build/main.pm
index 8057fa20957..a1943f581a1 100644
--- a/source/build/smb_build/main.pm
+++ b/source/build/smb_build/main.pm
@@ -46,9 +46,9 @@ sub smb_build_main($)
"winbind/config.mk",
"nbt_server/config.mk",
"cldap_server/config.mk",
- "auth/gensec/gensec.mk",
- "auth/kerberos/kerberos.mk",
- "auth/ntlmssp/ntlmssp.mk",
+ "auth/gensec/config.mk",
+ "auth/kerberos/config.mk",
+ "auth/ntlmssp/config.mk",
"libcli/auth/config.mk",
"libcli/ldap/config.mk",
"libcli/config.mk",
diff --git a/source/configure.in b/source/configure.in
index 9186d225c38..0aff3be8c5b 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -20,8 +20,8 @@ SMB_INCLUDE_M4(lib/ldb/config.m4)
SMB_INCLUDE_M4(lib/events/config.m4)
SMB_INCLUDE_M4(lib/cmdline/config.m4)
SMB_INCLUDE_M4(param/config.m4)
-SMB_INCLUDE_M4(auth/kerberos/kerberos.m4)
-SMB_INCLUDE_M4(auth/gensec/gensec.m4)
+SMB_INCLUDE_M4(auth/kerberos/config.m4)
+SMB_INCLUDE_M4(auth/gensec/config.m4)
SMB_INCLUDE_M4(libcli/config.m4)
SMB_INCLUDE_M4(smbd/process_model.m4)
SMB_INCLUDE_M4(lib/registry/config.m4)