updated list of Heimdal libs for Openbsd
[mod_auth_kerb.git] / configure.in
index fc8a93e..1a02ae8 100644 (file)
-dnl Process this file with autoconf to produce a configure script.
-AC_INIT(Apache Kerberos Module,
-        alpha2,
-        modauthkerb-developers@lists.sourceforge.net,
-        mod_auth_kerb)
-AC_CANONICAL_HOST
-
-
-dnl OS specific options.
-case "$host" in
-*-*-netbsd*)
-       need_dash_r=1
-       ;;
-*-*-solaris*)
-       need_dash_r=1
-       ;;
-esac
-
-
-dnl Custom args we care about.
-AC_ARG_WITH(api,
-[  --with-api=API                      api to use (apache1, apache2)],
-[
-       case $withval in
-               'apache1')
-                       ac_api=apache1
-                       ac_apidefs="-DAPXS1"
-                       ;;
-               'apache2')
-                       ac_api=apache2
-                       ac_apidefs="-DAPXS2"
-                       ;;
-               *)
-                       AC_ERROR(You can only specify apache1 or apache2.)
-                       ;;
-       esac
-]
-)
-
-AC_ARG_WITH(apxs,
-[  --with-apxs=PATH                    path to apxs],
-[
-       if test -e $withval ; then
-               APXS="$withval"
-       else
-               AC_ERROR(Specified apxs path does not exist.)
-       fi
-]
-)
-
-AC_ARG_WITH(static,
-[  --with-static                       module is to be statically linked],
-[
-       ac_static="yes"
-]
-)
-
-AC_ARG_WITH(krb5,
-[  --with-krb5=DIR                     path to Kerberos 5 install],
-[
-       CFLAGS="$CFLAGS -I$withval/include -I$withval/include/kerberosIV"
-       CPPFLAGS="$CPPFLAGS -I$withval/include -I$withval/include/kerberosIV"
-       LDFLAGS="$LDFLAGS -L$withval/lib"
-       if test -n "${need_dash_r}"; then
-               LDFLAGS="$LDFLAGS -R$withval/lib"
-       fi
-]
-)
-
-AC_ARG_WITH(krb5-include,
-[    --with-krb5-include=DIR           include path to Kerberos 5 install],
-[
-       CFLAGS="$CFLAGS -I$withval -I$withval/kerberosIV"
-       CPPFLAGS="$CPPFLAGS -I$withval -I$withval/kerberosIV"
-]
-)
-
-AC_ARG_WITH(krb5-lib,
-[    --with-krb5-lib=DIR               lib path to Kerberos 5 install],
-[
-       LDFLAGS="$LDFLAGS -L$withval"
-       if test -n "${need_dash_r}"; then
-               LDFLAGS="$LDFLAGS -R$withval"
-       fi
-]
-)
-
-AC_ARG_ENABLE(krb5,
-[  --disable-krb5                      force disabling of krb5 support],
-[
-       if test "$enable_krb5" = "no" ; then
-               ac_krb5_disable="yes"
-       fi
-],
-)
-
-AC_ARG_WITH(krb4,
-[  --with-krb4=DIR                     path to Kerberos 4 install],
-[
-       CFLAGS="$CFLAGS -I$withval/include"
-       CPPFLAGS="$CPPFLAGS -I$withval/include"
-       LDFLAGS="$LDFLAGS -L$withval/lib"
-       if test -n "${need_dash_r}"; then
-               LDFLAGS="$LDFLAGS -R$withval/lib"
-       fi
-]
-)
-
-AC_ARG_WITH(krb4-include,
-[    --with-krb4-include=DIR           include path to Kerberos 4 install],
-[
-       CFLAGS="$CFLAGS -I$withval"
-       CPPFLAGS="$CPPFLAGS -I$withval"
-]
-)
-
-AC_ARG_WITH(krb4-lib,
-[    --with-krb4-lib=DIR               lib path to Kerberos 4 install],
-[
-       LDFLAGS="$LDFLAGS -L$withval"
-       if test -n "${need_dash_r}"; then
-               LDFLAGS="$LDFLAGS -R$withval"
-       fi
-]
-)
-
-AC_ARG_ENABLE(krb4,
-[  --disable-krb4                      force disabling of krb4 support],
-[
-       if test "$enable_krb4" = "no" ; then
-               ac_krb4_disable="yes"
-       fi
-],
-)
-
-AC_ARG_WITH(gssapi,
-[  --with-gssapi=DIR                   path to GSSAPI install],
-[
-       CFLAGS="$CFLAGS -I$withval/include -I$withval/include/gssapi"
-       CPPFLAGS="$CPPFLAGS -I$withval/include -I$withval/include/gssapi"
-       LDFLAGS="$LDFLAGS -L$withval/lib"
-       if test -n "${need_dash_r}"; then
-               LDFLAGS="$LDFLAGS -R$withval/lib"
-       fi
-]
-)
-
-AC_ARG_WITH(gssapi-include,
-[    --with-gssapi-include=DIR         include path to GSSAPI install],
-[
-       CFLAGS="$CFLAGS -I$withval -I$withval/gssapi"
-       CPPFLAGS="$CPPFLAGS -I$withval -I$withval/gssapi"
-]
-)
-
-AC_ARG_WITH(gssapi-lib,
-[    --with-gssapi-lib=DIR             lib path to GSSAPI install],
-[
-       LDFLAGS="$LDFLAGS -L$withval"
-       if test -n "${need_dash_r}"; then
-               LDFLAGS="$LDFLAGS -R$withval"
-       fi
-]
-)
-
-AC_ARG_ENABLE(gssapi,
-[  --disable-gssapi                    force disabling of gssapi support],
-[
-       if test "$enable_gssapi" = "no" ; then
-               ac_gssapi_disable="yes"
-       fi
-]
-)
-
-
-
-dnl Checks for programs.
+# Process this file with autoconf to produce a configure script.
+AC_REVISION($Revision$)
+AC_PREREQ(2.53)
+AC_INIT(mod_auth_kerb, 0.5-rc3, modauthkerb-developers@lists.sourceforge.net)
+AC_CONFIG_SRCDIR([src/mod_auth_kerb.c])
+AC_CONFIG_HEADER([config.h])
+
+# Checks for programs.
 AC_PROG_CC
 AC_PROG_MAKE_SET
-if test -z "$ac_static" ; then
-       AC_PATH_PROG(APXS, apxs)
-       if test -z "$APXS" ; then
-               echo "No apxs found.  Defaulting to static module generation."
-               ac_static="yes"
-       fi
-fi
 
+# Checks for libraries.
+# FIXME: Replace `main' with a function in `-lresolv':
+LIB_resolv=""
+AC_CHECK_LIB([resolv], [main], [LIB_resolv=-lresolv])
+AC_SUBST(LIB_resolv)
+
+# Checks for header files.
+AC_HEADER_STDC
+AC_CHECK_HEADERS([limits.h netdb.h stddef.h stdlib.h string.h unistd.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+#AC_C_CONST
+AC_TYPE_SIZE_T
+AC_STRUCT_TM
+
+# Checks for library functions.
+#AC_FUNC_MALLOC
+#AC_FUNC_MEMCMP
+#AC_CHECK_FUNCS([gethostbyname memset putenv strcasecmp strchr strdup strerror])
+
+#
+# kerberos5 enviroment
+#
+KRB5_CPPFLAGS=""
+KRB5_LDFLAGS=""
+krb5_config_command=krb5-config
+DO_KRB5=
 
-dnl Checks for libraries.
-if test -z "$ac_krb5_disable" ; then
-       AC_CHECK_LIB(krb5, krb5_get_in_tkt_with_password, [
-               ac_krb5="yes"
-               ac_krbdefs="-DKRB5"
-               ac_krblibs="-lkrb5"
-               AC_CHECK_LIB(k5crypto, krb5_string_to_key, [
-                       ac_krblibs="$ac_krblibs -lk5crypto"
-               ], [
-                       AC_CHECK_LIB(crypto, krb5_string_to_key, [
-                               ac_krblibs="$ac_krblibs -lcrypto"
-                       ], [
-                               ac_krblibs=""
-                       ], "-lcom_err")
-               ], "-lcom_err")
-               ac_krblibs="$ac_krblibs -lcom_err"
-               
-               if test -z "$ac_krb4_disable" ; then
-                       if test -n "$ac_krblibs" ; then
-                               AC_CHECK_LIB(krb4, krb_get_pw_in_tkt, [
-                                       ac_krb4="yes"
-                                       ac_krbdefs="$ac_krbdefs -DKRB4"
-                                       ac_krblibs="-lkrb4 $ac_krblibs"
-                               ],, $ac_krblibs)
-                       fi
-               fi
-       ],, "-lcom_err")
+AC_ARG_WITH(krb5,
+  AC_HELP_STRING([--with-krb5=dir],[use krb5 in dir]),
+  [ with_krb5="$withval" ])
+
+if test "x$with_krb5" != "xno" ; then
+  AC_MSG_CHECKING([for Kerberos5 installation])
+  if test "x$with_krb5" != "x"; then
+     if test -x "$with_krb5/bin/krb5-config"; then
+        krb5_config_command="$with_krb5/bin/krb5-config"
+     else 
+        # quick fix for OpenBSD installations where krb5-config is missing.
+        # OpenBSD uses Heimdal, so add openbsd-specific configuration 
+        # libs for Heimdal 
+        KRB5_CPPFLAGS="-I$with_krb5/include"
+        KRB5_LDFLAGS="-L$with_krb5/lib -lkrb5 -lasn1 -ldes -lcrypt"
+        krb5_config_command=""
+     fi
+  fi
+
+  if test -n "$krb5_config_command"; then
+     KRB5_CPPFLAGS=`$krb5_config_command --cflags gssapi 2>/dev/null`
+     KRB5_LDFLAGS=`$krb5_config_command --libs gssapi 2>/dev/null`
+  fi
+  if test "x$KRB5_LDFLAGS" = "x"; then
+     with_krb5=no
+     AC_MSG_RESULT(no)
+  else
+     AC_MSG_RESULT(yes)
+
+     ac_save_CFLAGS=$CFLAGS
+     ac_save_LDFLAGS=$LDFLAGS
+     ac_save_LIBS=$LIBS
+     CFLAGS="$CFLAGS $KRB5_CPPFLAGS"
+     LDFLAGS="$LDFLAGS $KRB5_LDFLAGS"
+     LIBS="$LIBS $LDFLAGS $LIB_resolv"
+
+     AC_CHECK_LIB(krb5, krb5_init_context, [], [with_krb5=no])
+
+     if test "x$with_krb5" != "xno"; then
+        # check if krb5_cc_gen_new() is implemented by the krb5 library
+        AC_CHECK_FUNC(krb5_cc_gen_new, [AC_DEFINE(HAVE_KRB5_CC_GEN_NEW)])
+
+        # check for Heimdal
+        AC_MSG_CHECKING(whether we are using Heimdal)
+       AC_TRY_COMPILE([#include <krb5.h>],
+                      [ char *tmp = heimdal_version; ],
+                      [ AC_MSG_RESULT(yes)
+                        AC_DEFINE(HEIMDAL) ],
+                      [ AC_MSG_RESULT(no) ])
+     fi
+
+     CFLAGS=$ac_save_CFLAGS
+     LDFLAGS=$ac_save_LDFLAGS
+     LIBS=$ac_save_LIBS
+     AC_DEFINE(KRB5)
+     DO_KRB5=yes
+  fi
 fi
+AC_SUBST(KRB5_CPPFLAGS)
+AC_SUBST(KRB5_LDFLAGS)
+AC_SUBST(DO_KRB5)
 
-if test -z "$ac_krb4_disable" -a -z "$ac_krb4" ; then
-       AC_CHECK_LIB(krb, krb_get_pw_in_tkt, [
-               ac_krb4="yes"
-               ac_krbdefs="-DKRB4"
-               ac_krblibs="$ac_krblibs -lkrb -lcom_err"
-       ],, "-lcom_err")
-fi
+#
+# Kerberos4 enviroment
+#
+KRB4_CPPFLAGS=""
+KRB4_LDFLAGS=""
 
-if test -z "$ac_krb4" -a -z "$ac_krb5" ; then
-       AC_ERROR(Neither Kerberos 5 nor 4 support available.)
+AC_ARG_WITH(krb4,
+  AC_HELP_STRING([--with-krb4=dir], [use krb4 in dir]),
+  [ with_krb4="$withval" ])
+
+if test "x$with_krb4" != "xno"; then
+  AC_MSG_CHECKING([for Kerberos4 installation])
+  if test "x$with_krb4" != "x"; then
+     if test -x "$with_krb4/bin/krb4-config"; then
+        KRB4_CPPFLAGS=`$with_krb4/bin/krb4-config --cflags krb4 2>/dev/null`
+        KRB4_LDFLAGS=`$with_krb4/bin/krb4-config --libs krb4 2>/dev/null`
+     elif test -x "$with_krb4/bin/krb5-config"; then
+        KRB4_CPPFLAGS=`$with_krb4/bin/krb5-config --cflags krb4 2>/dev/null`
+        KRB4_LDFLAGS=`$with_krb4/bin/krb5-config --libs krb4 2>/dev/null`
+     else
+        AC_MSG_ERROR([failed to find krb4-config or krb5-config in $with_krb4/bin])
+     fi
+  else
+     KRB4_CPPFLAGS=`krb4-config --cflags krb4 2>/dev/null`
+     KRB4_LDFLAGS=`krb4-config --libs krb4 2>/dev/null`
+     if test "x$KRB4_LDFLAGS" = "x"; then
+        KRB4_CPPFLAGS=`$krb5_config_command --cflags krb4 2>/dev/null`
+        KRB4_LDFLAGS=`$krb5_config_command --libs krb4 2>/dev/null`
+        if test $? -ne 0; then
+           KRB4_CPPFLAGS=""
+           KRB4_LDFLAGS=""
+        fi
+     fi
+  fi
+  if test "x$KRB4_LDFLAGS" = "x"; then
+     with_krb4=no
+     AC_MSG_RESULT(no)
+  else
+     AC_MSG_RESULT(yes)
+
+     ac_save_CFLAGS=$CFLAGS
+     ac_save_CPPFLAGS=$CPPFLAGS
+     ac_save_LDFLAGS=$LDFLAGS
+     ac_save_LIBS=$LIBS
+     CFLAGS="$CFLAGS $KRB4_CPPFLAGS"
+     CPPFLAGS="$CFLAGS $KRB4_CPPFLAGS"
+     LDFLAGS="$LDFLAGS $KRB4_LDFLAGS"
+     LIBS="$LIBS $LDFLAGS $LIB_resolv"
+
+#    if not found krb.h suppose it's in the kerberosIV subdirectory
+     AC_CHECK_HEADER(krb.h, , with_krb4=no)
+     if test "x$with_krb4" = "xno"; then
+         KRB4_CPPFLAGS="$KRB4_CPPFLAGS ${KRB4_CPPFLAGS}/kerberosIV"
+#        second run of AC_CHECK_HEADER for the same library returns the cached
+#        result created by previous run :-(
+         AC_CHECK_HEADER(kerberosIV/krb.h, with_krb4=yes,
+                         [  with_krb4=no
+                            KRB4_CPPFLAGS=""
+                            KRB4_LDFLAGS=""])
+     fi
+
+     if test "x$with_krb4" != "xno"; then
+        AC_CHECK_LIB(krb4, krb_get_pw_in_tkt, [], [with_krb4=no])
+        if test "x$with_krb4" = "xno"; then
+           AC_CHECK_LIB(krb, krb_get_pw_in_tkt, [with_krb4=yes], 
+                        [with_krb4=no
+                         KRB4_CPPFLAGS=""
+                         KRB4_LDFLAGS=""])
+        fi
+     fi
+
+     CFLAGS=$ac_save_CFLAGS
+     CPPFLAGS=$ac_save_CPPFLAGS
+     LDFLAGS=$ac_save_LDFLAGS
+     LIBS=$ac_save_LIBS
+
+     AC_DEFINE(KRB4)
+  fi
 fi
+AC_SUBST(KRB4_CPPFLAGS)
+AC_SUBST(KRB4_LDFLAGS)
 
 
-dnl Checks for header files.
-if test -n "$ac_krb5" ; then
-       AC_CHECK_HEADERS(krb5.h, [
-               ac_foundkrb5="yes"
-               break
-       ])
-
-       if test -z "$ac_foundkrb5" ; then
-               AC_MSG_RESULT(krb5.h not found... removing krb5 support.)
-               ac_krb5=""
-       fi
+if test "x$with_krb5" = "xno" -a "x$with_krb4" = "xno"; then
+  AC_MSG_ERROR([No Kerberos enviroment found])
 fi
 
-if test -n "$ac_krb4" ; then
-       AC_CHECK_HEADERS(kerberosIV/krb.h krb.h, [
-               ac_foundkrb4="yes"
-               break
-       ])
-
-       if test -z "$ac_foundkrb4" ; then
-               AC_MSG_RESULT(krb.h not found... removing krb4 support.)
-               ac_krb4=""
-       fi
+#
+# Apache enviroment
+#
+AC_ARG_WITH(apache,
+  AC_HELP_STRING([--with-apache=dir],[use apache in dir]),
+  [ with_apache="$withval" ])
+
+AC_MSG_CHECKING([for Apache installation])
+
+APXS="apxs"
+HTTPD="httpd"
+if test "x$with_apache" != "x"; then
+  if test ! -x "$with_apache/bin/httpd" -o ! -x "$with_apache/bin/apxs"; then
+     AC_MSG_ERROR([failed to find apache files in $with_apache])
+  fi
+  APXS="$with_apache/bin/apxs"
+  if test ! -x $APXS; then
+     APXS="$with_apache/sbin/apxs"
+  fi
+  HTTPD="$with_apache/bin/httpd"
+  if test ! -x $HTTPD; then
+     HTTPD"$with_apache/sbin/httpd"
+  fi
 fi
 
-if test -z "$ac_krb4" -a -z "$ac_krb5" ; then
-       AC_ERROR(Neither Kerberos 5 nor 4 support available.)
+apache_v1_3=`$HTTPD -v | grep "^Server version: Apache/1.3."`
+apache_v2_0=`$HTTPD -v | grep "^Server version: Apache/2.0."`
+if test "x$apache_v1_3" = "x" -a "x$apache_v2_0" = "x"; then
+  AC_MSG_ERROR([cannot find valid apache installation on your system])
 fi
-
-
-dnl Checks for typedefs, structures, and compiler characteristics.
-if test -z "$ac_api" ; then
-       if test -n "`$APXS -q bindir 2> /dev/null`" ; then
-               echo "API autodetected to be Apache 2.*"
-               ac_api=apache2
-               ac_apidefs="-DAPXS2"
-       else
-               echo "API autodetected to be Apache 1.*"
-               ac_api=apache1
-               ac_apidefs="-DAPXS1"
-       fi
+if test -n "$apache_v1_3"; then
+  AC_DEFINE(APXS1)
 fi
+AC_MSG_RESULT(yes)
 
+AC_SUBST(APXS)
 
-dnl Checks for library functions.
-
-
-dnl Last minute settings.
-LIBS="$LIBS $ac_krblibs"
-DEFS="$DEFS $ac_apidefs $ac_krbdefs"
-CFLAGS="$CFLAGS $DEFS"
-
-
-dnl Create files necessary to compile mod_auth_kerb.
-if test "$ac_static" = "yes" ; then
-       echo ""
-       echo ""
-       echo "This module is to be built statically into Apache.  You will need"
-       echo "to place it into the appropriate location in the source tree and"
-       echo "compile Apache accordingly.  You can look at the online docs at"
-       echo "http://modauthkerb.sourceforge.net/ or README.static for more"
-       echo "information."
-       echo ""
-       echo ""
-else
-       AC_OUTPUT(Makefile)
-       AC_OUTPUT(src/Makefile)
-fi
+AC_CONFIG_FILES([Makefile
+                 spnegokrb5/Makefile])
 
-exit 0
+AC_OUTPUT