make dist-gzip for our build process
authorSam Hartman <hartmans@debian.org>
Tue, 19 May 2015 15:54:38 +0000 (11:54 -0400)
committerSam Hartman <hartmans@debian.org>
Tue, 19 May 2015 15:54:38 +0000 (11:54 -0400)
* Update configure.in header for package and version
* Add .gitignore

.gitignore [new file with mode: 0644]
Makefile.in
config.h.in [deleted file]
configure.in

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..505a194
--- /dev/null
@@ -0,0 +1,8 @@
+*.o
+Makefile
+mod_auth_gssapi*tar.gz
+configure
+autom4te.cache
+config.status
+config.h
+config.log
index 7f98aee..97f1320 100644 (file)
@@ -26,11 +26,6 @@ distclean: clean
        $(RM) config.h config.status Makefile config.log
        $(RM) -rf autom4te.cache
 
-make_release:
-       echo "Did you increase version numbers?"
-       autoconf
-       $(RM) -rf autom4te.cache
-       $(RM) -rf .cvsignore spnegokrb5/.cvsignore src/.cvsignore
-       $(RM) -rf CVS spnegokrb5/CVS src/CVS
-
-.PHONY: all install clean distclean
+dist-gzip:
+       git archive  --prefix mod_auth_gssapi/ HEAD |gzip -9 >@PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz
+.PHONY: all install clean distclean dist-gzip
diff --git a/config.h.in b/config.h.in
deleted file mode 100644 (file)
index ca90d99..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-
-/* Define to the version of this package. */
-/* Conflicts with defintions from Apache */
-/* #undef PACKAGE_VERSION */
-
-/* Define to `unsigned' if <sys/types.h> does not define. */
-#undef size_t
-
-/* Define if you are using the Heimdal implementation of Krb5 */
-#undef HEIMDAL
-
-/* Define if you want to enable support for Kerberos5 */
-#undef KRB5
-
-/* Define if you want to enable support for Kerberos4 */
-#undef KRB4
-
-/* Define if your GSSAPI library supports handling SPNEGO tokens */
-#undef GSSAPI_SUPPORTS_SPNEGO
-
-/* Define if your krb supports krb5_cc_new_unique function to deal with threading issues */
-#undef HAVE_KRB5_CC_NEW_UNIQUE
-
-/* Define to 1 if you have the <unistd.h> header file. */
-#undef HAVE_UNISTD_H
-
-/* Define to 1 if you have the <sys/types.h> header file. */
-#undef HAVE_SYS_TYPES_H
index 3bc38b3..41adf00 100644 (file)
@@ -1,7 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 AC_REVISION($Revision$)
 AC_PREREQ(2.57)
-AC_INIT(mod_auth_kerb, 5.4, modauthkerb-developers@lists.sourceforge.net)
+AC_INIT(mod_auth_gssapi, 1.0, modauthkerb-developers@lists.sourceforge.net)
 AC_CONFIG_SRCDIR([src/mod_auth_kerb.c])
 AC_CONFIG_HEADER([config.h])
 
@@ -261,6 +261,9 @@ if test -z "$APXS"; then
    fi
 fi
 AC_SUBST(APXS)
+AC_SUBST(PACKAGE_VERSION)
+AC_SUBST(PACKAGE_TARNAME)
+
 
 AC_CONFIG_FILES([Makefile])