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>
Thu, 21 May 2015 18:40:51 +0000 (14:40 -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 f5b3e07..f6560ee 100644 (file)
@@ -36,4 +36,7 @@ distclean: clean
        $(RM) config.h config.status Makefile config.log
        $(RM) -rf autom4te.cache
 
-.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 336664e..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/* config.h.in.  Generated from configure.in by autoheader.  */
-
-/* GSS-API implementation has its own SPNEGO */
-#undef GSSAPI_SUPPORTS_SPNEGO
-
-/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
-#undef HAVE_GSSAPI_GSSAPI_H
-
-/* Define to 1 if you have the <gssapi.h> header file. */
-#undef HAVE_GSSAPI_H
-
-/* Define to 1 if you have the <inttypes.h> header file. */
-#undef HAVE_INTTYPES_H
-
-/* Define to 1 if you have the <limits.h> header file. */
-#undef HAVE_LIMITS_H
-
-/* Define to 1 if you have the <memory.h> header file. */
-#undef HAVE_MEMORY_H
-
-/* Define to 1 if you have the <netdb.h> header file. */
-#undef HAVE_NETDB_H
-
-/* Define to 1 if you have the <stddef.h> header file. */
-#undef HAVE_STDDEF_H
-
-/* Define to 1 if you have the <stdint.h> header file. */
-#undef HAVE_STDINT_H
-
-/* Define to 1 if you have the <stdlib.h> header file. */
-#undef HAVE_STDLIB_H
-
-/* Define to 1 if you have the <strings.h> header file. */
-#undef HAVE_STRINGS_H
-
-/* Define to 1 if you have the <string.h> header file. */
-#undef HAVE_STRING_H
-
-/* Define to 1 if you have the <sys/stat.h> header file. */
-#undef HAVE_SYS_STAT_H
-
-/* Define to 1 if you have the <sys/types.h> header file. */
-#undef HAVE_SYS_TYPES_H
-
-/* Define to 1 if you have the <unistd.h> header file. */
-#undef HAVE_UNISTD_H
-
-/* Define to the address where bug reports for this package should be sent. */
-#undef PACKAGE_BUGREPORT
-
-/* Define to the full name of this package. */
-#undef PACKAGE_NAME
-
-/* Define to the full name and version of this package. */
-#undef PACKAGE_STRING
-
-/* Define to the one symbol short name of this package. */
-#undef PACKAGE_TARNAME
-
-/* Define to the home page for this package. */
-#undef PACKAGE_URL
-
-/* Define to the version of this package. */
-#undef PACKAGE_VERSION
-
-/* Define to 1 if you have the ANSI C header files. */
-#undef STDC_HEADERS
-
-/* Define to 1 if your <sys/time.h> declares `struct tm'. */
-#undef TM_IN_SYS_TIME
-
-/* Define to `unsigned int' if <sys/types.h> does not define. */
-#undef size_t
index ad9480d..e39129d 100644 (file)
@@ -166,6 +166,9 @@ if test -z "$APXS"; then
    fi
 fi
 AC_SUBST(APXS)
+AC_SUBST(PACKAGE_VERSION)
+AC_SUBST(PACKAGE_TARNAME)
+
 
 AC_CONFIG_FILES([Makefile])