summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Schridde <dennis.schridde@uni-heidelberg.de>2016-08-26 17:08:33 +0200
committerSimo Sorce <simo@redhat.com>2016-08-29 10:20:52 -0400
commit6f9608c12b18d615b1af59b926e7df72f9fe0baf (patch)
tree872e17f6b7689231b9918994df0f1a83923cdcf8
parenta24431d92e6dcd53068125a07eec1e1132eca51d (diff)
downloadmod_auth_gssapi-6f9608c12b18d615b1af59b926e7df72f9fe0baf.tar.gz
mod_auth_gssapi-6f9608c12b18d615b1af59b926e7df72f9fe0baf.tar.xz
mod_auth_gssapi-6f9608c12b18d615b1af59b926e7df72f9fe0baf.zip
Update configure.ac using `autoupdate`
Reviewed-by: Simo Sorce <simo@redhat.com> Closes #103
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 0ec11a1..b4b735c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ([2.69])
m4_include([version.m4])
-AC_INIT([mod_auth_gssapi], VERSION_NUMBER, [simo@redhat.com])
+AC_INIT([mod_auth_gssapi],[VERSION_NUMBER],[simo@redhat.com])
AC_CONFIG_SRCDIR([src/mod_auth_gssapi.c])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax])
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
@@ -10,11 +10,11 @@ AC_CONFIG_HEADERS([src/config.h])
# Checks for programs.
AC_PROG_CC_STDC
-AC_PROG_LIBTOOL
+LT_INIT
AC_SUBST(INCLTDL)
AC_SUBST(LIBLTDL)
-AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes])
+AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_c_compiler_gnu" = yes])
AC_CHECK_HEADERS([stdint.h])
@@ -27,7 +27,7 @@ AC_TYPE_UINT32_T
AC_CHECK_FUNCS([strcasecmp])
AC_ARG_WITH([apxs],
- [AC_HELP_STRING([--with-apxs=PATH/NAME], [path to the apxs binary [[apxs]]])],
+ [AS_HELP_STRING([--with-apxs=PATH/NAME],[path to the apxs binary [[apxs]]])],
[AC_SUBST(APXS, $with_apxs)],
[AC_PATH_PROGS(APXS, [apxs2 apxs])])
AS_IF([test "x${APXS}" != "x" -a -x "${APXS}"],
@@ -37,7 +37,7 @@ AS_IF([test "x${APXS}" != "x" -a -x "${APXS}"],
[AC_MSG_FAILURE(["apxs not found. Use --with-apxs"])])
AC_ARG_WITH([apr],
- [AC_HELP_STRING([--with-apr=PATH/NAME], [path to the apr binary [[apr]]])],
+ [AS_HELP_STRING([--with-apr=PATH/NAME],[path to the apr binary [[apr]]])],
[AC_SUBST(APR, $with_apr)],
[AC_PATH_PROGS(APR, [apr-1-config])])
AS_IF([test "x${APR}" != "x" -a -x "${APR}"],