Include RPM spec file in dist package.
[mod_auth_gssapi.git] / configure.ac
index 7be2b7e..7065b64 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ([2.69])
-AC_INIT([mod_auth_gssapi], [1.0.4], [simo@redhat.com])
+AC_INIT([mod_auth_gssapi], [1.3.2], [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])
@@ -7,7 +7,7 @@ AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS([src/config.h])
 
 # Checks for programs.
-AC_PROG_CC
+AC_PROG_CC_STDC
 
 AC_PROG_LIBTOOL
 AC_SUBST(INCLTDL)
@@ -55,6 +55,7 @@ AC_SUBST([OPENSSL_LIBS])
 
 AC_CHECK_HEADERS([gssapi/gssapi.h gssapi/gssapi_ext.h gssapi/gssapi_krb5.h],
                  ,[AC_MSG_ERROR([Could not find GSSAPI headers])])
+AC_CHECK_HEADERS([gssapi/gssapi_ntlmssp.h])
 AC_PATH_PROG(KRB5_CONFIG, krb5-config, failed)
 if test x$KRB5_CONFIG = xfailed; then
     AC_MSG_ERROR([Could not find GSSAPI development libraries])
@@ -82,6 +83,6 @@ AC_SUBST([MAG_LIBS])
 AC_SUBST([LIBTOOL])
 AC_SUBST([MAG_LIBDIR])
 
-AC_CONFIG_FILES([Makefile src/Makefile])
+AC_CONFIG_FILES([Makefile src/Makefile src/asn1c/Makefile])
 
 AC_OUTPUT