diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-02-03 13:00:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:30 -0500 |
commit | 10c211f2afc45e7a75f024c946a5c8232d7efd6b (patch) | |
tree | c12d9bff2fd86a02f07efc17916fe00ed441e4f9 | |
parent | e6b8c811cac0730c16e685d04ee41fce036fd51c (diff) | |
download | samba-10c211f2afc45e7a75f024c946a5c8232d7efd6b.tar.gz samba-10c211f2afc45e7a75f024c946a5c8232d7efd6b.tar.bz2 samba-10c211f2afc45e7a75f024c946a5c8232d7efd6b.zip |
r5199: fix some minor configure bugs
metze
(This used to be commit 274ef2a206aa00b3155adc27f5b7e35d3fa52bf6)
-rw-r--r-- | source4/lib/cmdline/config.m4 | 2 | ||||
-rw-r--r-- | source4/libads/config.m4 | 2 | ||||
-rw-r--r-- | source4/libcli/auth/gensec.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/cmdline/config.m4 b/source4/lib/cmdline/config.m4 index a242e2c5e5..e2121d1f14 100644 --- a/source4/lib/cmdline/config.m4 +++ b/source4/lib/cmdline/config.m4 @@ -72,7 +72,7 @@ AC_CHECK_LIB(readline, rl_completion_matches, TMP_LIBCMDLINE_OBJS="lib/cmdline/readline.o lib/cmdline/popt_common.o" TMP_LIBCMDLINE_LIBS="$TERMLIBS" -SMB_EXT_LIB(READLINE, [$TERMLIBS]) +SMB_EXT_LIB(READLINE, [${TMP_LIBCMDLINE_LIBS}]) SMB_SUBSYSTEM(LIBCMDLINE,[], [${TMP_LIBCMDLINE_OBJS}], diff --git a/source4/libads/config.m4 b/source4/libads/config.m4 index f7225a4e15..2ae82cd745 100644 --- a/source4/libads/config.m4 +++ b/source4/libads/config.m4 @@ -292,7 +292,7 @@ if test x"$with_krb5_support" != x"no"; then # Heimdal checks. # But only if we didn't have a krb5-config to tell us this already - if x"$FOUND_KRB5_VIA_CONFIG" != x"yes"; then + if test x"$FOUND_KRB5_VIA_CONFIG" != x"yes"; then AC_CHECK_LIB_EXT(crypto, KRB5_LIBS, des_set_key) AC_CHECK_LIB_EXT(asn1, KRB5_LIBS, copy_Authenticator) AC_CHECK_LIB_EXT(roken, KRB5_LIBS, roken_getaddrinfo_hostspec) diff --git a/source4/libcli/auth/gensec.m4 b/source4/libcli/auth/gensec.m4 index 9e9b04a695..356f857d81 100644 --- a/source4/libcli/auth/gensec.m4 +++ b/source4/libcli/auth/gensec.m4 @@ -2,7 +2,7 @@ SMB_MODULE_DEFAULT(gensec_krb5, NOT) SMB_MODULE_DEFAULT(gensec_gssapi, NOT) if test x"$SMB_EXT_LIB_ENABLE_KRB5" = x"YES"; then - /* enable this when krb5 is fully working */ + # enable this when krb5 is fully working SMB_MODULE_DEFAULT(gensec_krb5, STATIC) SMB_MODULE_DEFAULT(gensec_gssapi, STATIC) fi |