[rs-commit] r144 - /mod_crl/trunk/Makefile.am /mod_csr/trunk/Makefile.am /mod_ocsp/trunk/Makefile.am /mod_pkcs12/trunk/Makefile.am /mod_scep/trunk/Makefile.am /mod_spkac/trunk/Makefile.am /mod_spkac/trunk/config.h.in /mod_timestamp/trunk/Makefile.am

rs-commit at redwax.eu rs-commit at redwax.eu
Sat Nov 30 18:08:42 CET 2019


Author: dirkx at redwax.eu
Date: Sat Nov 30 18:08:41 2019
New Revision: 144

Log:
Apply the fix of r142 to get NixOS install control to the other modules; add a plain config.h.in file back in.

--Tis line, and those below, will be ignored--

M    mod_crl/trunk/Makefile.am
M    mod_csr/trunk/Makefile.am
M    mod_ocsp/trunk/Makefile.am
M    mod_pkcs12/trunk/Makefile.am
M    mod_scep/trunk/Makefile.am
M    mod_spkac/trunk/Makefile.am
M    mod_timestamp/trunk/Makefile.am
A    mod_spkac/trunk/config.h.in

Added:
    mod_spkac/trunk/config.h.in
Modified:
    mod_crl/trunk/Makefile.am
    mod_csr/trunk/Makefile.am
    mod_ocsp/trunk/Makefile.am
    mod_pkcs12/trunk/Makefile.am
    mod_scep/trunk/Makefile.am
    mod_spkac/trunk/Makefile.am
    mod_timestamp/trunk/Makefile.am

Modified: mod_crl/trunk/Makefile.am
==============================================================================
--- mod_crl/trunk/Makefile.am	(original)
+++ mod_crl/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_crl.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_crl.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_crl.c

Modified: mod_csr/trunk/Makefile.am
==============================================================================
--- mod_csr/trunk/Makefile.am	(original)
+++ mod_csr/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_csr.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_csr.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_csr.c

Modified: mod_ocsp/trunk/Makefile.am
==============================================================================
--- mod_ocsp/trunk/Makefile.am	(original)
+++ mod_ocsp/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_ocsp.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_ocsp.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_ocsp.c

Modified: mod_pkcs12/trunk/Makefile.am
==============================================================================
--- mod_pkcs12/trunk/Makefile.am	(original)
+++ mod_pkcs12/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_pkcs12.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_pkcs12.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_pkcs12.c

Modified: mod_scep/trunk/Makefile.am
==============================================================================
--- mod_scep/trunk/Makefile.am	(original)
+++ mod_scep/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_scep.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_scep.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_scep.c

Modified: mod_spkac/trunk/Makefile.am
==============================================================================
--- mod_spkac/trunk/Makefile.am	(original)
+++ mod_spkac/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_spkac.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_spkac.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_spkac.c

Added: mod_spkac/trunk/config.h.in
==============================================================================
--- mod_spkac/trunk/config.h.in	(added)
+++ mod_spkac/trunk/config.h.in	Sat Nov 30 18:08:41 2019
@@ -0,0 +1,64 @@
+/* config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define to 1 if you have the `ASN1_STRING_get0_data' function. */
+#undef HAVE_ASN1_STRING_GET0_DATA
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#undef HAVE_INTTYPES_H
+
+/* Define to 1 if you have the <memory.h> header file. */
+#undef HAVE_MEMORY_H
+
+/* Define to 1 if you have the <mod_ca.h> header file. */
+#undef HAVE_MOD_CA_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
+
+/* Name of package */
+#undef PACKAGE
+
+/* 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
+
+/* Version number of package */
+#undef VERSION
+
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+#undef size_t

Modified: mod_timestamp/trunk/Makefile.am
==============================================================================
--- mod_timestamp/trunk/Makefile.am	(original)
+++ mod_timestamp/trunk/Makefile.am	Sat Nov 30 18:08:41 2019
@@ -6,5 +6,6 @@
 	$(APXS) "-Wc,${CFLAGS}" -c $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_timestamp.c
 
 install-exec-local: 
-	mkdir -p $(DESTDIR)`$(APXS) -q LIBEXECDIR`
-	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)`$(APXS) -q LIBEXECDIR` -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_timestamp.c
+	if test -z "$${LIBEXECDIR}"; then LIBEXECDIR=`$(APXS) -q LIBEXECDIR`; fi;\
+	mkdir -p $(DESTDIR)$${LIBEXECDIR}; \
+	$(APXS) "-Wc,${CFLAGS}" -S LIBEXECDIR=$(DESTDIR)$${LIBEXECDIR} -c -i $(DEF_LDLIBS) $(AM_CFLAGS) $(AM_LDFLAGS) $(openssl_CFLAGS) $(openssl_LIBS) @srcdir@/mod_timestamp.c



More information about the rs-commit mailing list