From 92002162c4da52c7bd75d229a6bfc4ebfac96962 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Tue, 19 May 2015 11:54:38 -0400 Subject: [PATCH] make dist-gzip for our build process * Update configure.in header for package and version * Add .gitignore --- .gitignore | 8 +++++++ Makefile.in | 5 ++++- config.h.in | 73 ------------------------------------------------------------ configure.in | 3 +++ 4 files changed, 15 insertions(+), 74 deletions(-) create mode 100644 .gitignore delete mode 100644 config.h.in diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a194 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +*.o +Makefile +mod_auth_gssapi*tar.gz +configure +autom4te.cache +config.status +config.h +config.log diff --git a/Makefile.in b/Makefile.in index f5b3e07..f6560ee 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 index 336664e..0000000 --- a/config.h.in +++ /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 header file. */ -#undef HAVE_GSSAPI_GSSAPI_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_GSSAPI_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_LIMITS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_NETDB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDDEF_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the 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 declares `struct tm'. */ -#undef TM_IN_SYS_TIME - -/* Define to `unsigned int' if does not define. */ -#undef size_t diff --git a/configure.in b/configure.in index ad9480d..e39129d 100644 --- a/configure.in +++ b/configure.in @@ -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]) -- 2.1.4