[evolution-data-server] Bug #645239 - Fix build error when enabling kerberos without specifying path
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Bug #645239 - Fix build error when enabling kerberos without specifying path
- Date: Tue, 19 Apr 2011 09:20:05 +0000 (UTC)
commit 67dbf926c7e62fc39eac0a9c7e453708923f04b9
Author: Niki Guldbrand <niki guldbrand gmail com>
Date: Tue Apr 19 11:18:46 2011 +0200
Bug #645239 - Fix build error when enabling kerberos without specifying path
configure.ac | 2 +-
m4/evo_krb5_support.m4 | 46 +++++++++++++++++++++++++++++++++++++++-------
2 files changed, 40 insertions(+), 8 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 9c1bee8..3c4fbfe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1098,7 +1098,7 @@ AC_SUBST(DEFAULT_EDS_DBUS_TIMEOUT)
dnl ***********
dnl Kerberos 5
dnl ***********
-EVO_KRB5_SUPPORT
+EVO_KRB5_SUPPORT(no)
dnl ******************************
dnl Purify support
diff --git a/m4/evo_krb5_support.m4 b/m4/evo_krb5_support.m4
index 109eeb1..ba37e81 100644
--- a/m4/evo_krb5_support.m4
+++ b/m4/evo_krb5_support.m4
@@ -1,31 +1,63 @@
-#serial 0.1
+dnl EVO_KRB5_SUPPORT(default)
+dnl Add --with-krb5, --with-krb5-libs and --with-krb5-include options.
+dnl --with-krb5 defaults to the given value if not specified.
+#serial 0.2
AC_DEFUN([EVO_KRB5_SUPPORT],[
dnl ******************************
dnl Kerberos
dnl ******************************
+ default="$1"
AC_ARG_WITH([krb5],
AS_HELP_STRING([--with-krb5=PATH],
- [Location of Kerberos 5 install dir]),
- [with_krb5="$withval"], [with_krb5="no"])
+ [Location of Kerberos 5 install dir]))
AC_ARG_WITH([krb5-libs],
AS_HELP_STRING([--with-krb5-libs=PATH],
- [Location of Kerberos 5 libraries]),
- [with_krb5_libs="$withval"], [with_krb5_libs="$with_krb5/lib"])
+ [Location of Kerberos 5 libraries]))
AC_ARG_WITH([krb5-includes],
AS_HELP_STRING([--with-krb5-includes=PATH],
- [Location of Kerberos 5 headers]),
- [with_krb5_includes="$withval"], [with_krb5_includes="$with_krb5/include"])
+ [Location of Kerberos 5 headers]))
dnl ******************************
dnl Kerberos 5
dnl ******************************
msg_krb5="no"
AC_MSG_CHECKING([for Kerberos 5])
+ with_krb5="${with_krb5:=$default}"
+ case $with_krb5 in
+ no|"")
+ with_krb5=no
+ ;;
+ yes)
+ with_krb5=/usr
+ ;;
+ *)
+ with_krb5=$with_krb5
+ ;;
+ esac
+
if test "x${with_krb5}" != "xno"; then
LIBS_save="$LIBS"
+ case $with_krb5_libs in
+ yes|no|"")
+ with_krb5_libs=$with_krb5/lib
+ ;;
+ *)
+ with_krb5_libs=$with_krb5_libs
+ ;;
+ esac
+
+ case $with_krb5_includes in
+ yes|no|"")
+ with_krb5_includes=$with_krb5/include
+ ;;
+ *)
+ with_krb5_includes=$with_krb5_includes
+ ;;
+ esac
+
mitlibs="-lkrb5 -lk5crypto -lcom_err -lgssapi_krb5"
heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi"
sunlibs="-lkrb5 -lgss"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]