From 4c0400fa1fae66bd8c4075d9cbd9a0199db22fb6 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Tue, 22 Aug 2000 04:25:36 +0000 Subject: [PATCH] Finish fixing the pcre build. PCRE's configure script should be called, and we can't clean config.h and then touch the file, we actually need some of the data that config.h contains. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86132 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 1 + srclib/pcre/Makefile.in | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 80431a67f8..30fa4006d3 100644 --- a/configure.in +++ b/configure.in @@ -204,6 +204,7 @@ dnl ## APRVARS before Apache generates it's Makefiles and the related files. dnl ## This allows APR to detect libraries like dl and tell Apache that it dnl ## needs to include or not include them. RUN_SUBDIR_CONFIG_NOW(lib/apr) +RUN_SUBDIR_CONFIG_NOW(lib/pcre) . ./lib/apr/APRVARS APACHE_GEN_CONFIG_VARS diff --git a/srclib/pcre/Makefile.in b/srclib/pcre/Makefile.in index 309fb3c6e9..ba2cd140ca 100644 --- a/srclib/pcre/Makefile.in +++ b/srclib/pcre/Makefile.in @@ -1,7 +1,8 @@ LTLIBRARY_NAME = libpcre.la LTLIBRARY_SOURCES = maketables.c get.c study.c pcre.c pcreposix.c -CLEANFILES = dftables config.h chartables.c +CLEANFILES = dftables chartables.c +DISTCLEANFILES = config.h $(CLEANFILES) include $(top_srcdir)/build/ltlib.mk -- 2.50.1