Skip to content

Commit 6f9608c

Browse files
Dennis Schriddesimo5
authored andcommitted
Update configure.ac using autoupdate
Reviewed-by: Simo Sorce <simo@redhat.com> Closes #103
1 parent a24431d commit 6f9608c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

configure.ac

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ([2.69])
22
m4_include([version.m4])
3-
AC_INIT([mod_auth_gssapi], VERSION_NUMBER, [simo@redhat.com])
3+
AC_INIT([mod_auth_gssapi],[VERSION_NUMBER],[simo@redhat.com])
44
AC_CONFIG_SRCDIR([src/mod_auth_gssapi.c])
55
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax])
66
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
@@ -10,11 +10,11 @@ AC_CONFIG_HEADERS([src/config.h])
1010
# Checks for programs.
1111
AC_PROG_CC_STDC
1212

13-
AC_PROG_LIBTOOL
13+
LT_INIT
1414
AC_SUBST(INCLTDL)
1515
AC_SUBST(LIBLTDL)
1616

17-
AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes])
17+
AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_c_compiler_gnu" = yes])
1818

1919
AC_CHECK_HEADERS([stdint.h])
2020

@@ -27,7 +27,7 @@ AC_TYPE_UINT32_T
2727
AC_CHECK_FUNCS([strcasecmp])
2828

2929
AC_ARG_WITH([apxs],
30-
[AC_HELP_STRING([--with-apxs=PATH/NAME], [path to the apxs binary [[apxs]]])],
30+
[AS_HELP_STRING([--with-apxs=PATH/NAME],[path to the apxs binary [[apxs]]])],
3131
[AC_SUBST(APXS, $with_apxs)],
3232
[AC_PATH_PROGS(APXS, [apxs2 apxs])])
3333
AS_IF([test "x${APXS}" != "x" -a -x "${APXS}"],
@@ -37,7 +37,7 @@ AS_IF([test "x${APXS}" != "x" -a -x "${APXS}"],
3737
[AC_MSG_FAILURE(["apxs not found. Use --with-apxs"])])
3838

3939
AC_ARG_WITH([apr],
40-
[AC_HELP_STRING([--with-apr=PATH/NAME], [path to the apr binary [[apr]]])],
40+
[AS_HELP_STRING([--with-apr=PATH/NAME],[path to the apr binary [[apr]]])],
4141
[AC_SUBST(APR, $with_apr)],
4242
[AC_PATH_PROGS(APR, [apr-1-config])])
4343
AS_IF([test "x${APR}" != "x" -a -x "${APR}"],

0 commit comments

Comments
 (0)