From c1d492887ce6e5cd0c04aba26f60f85b69ff2b0b Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Fri, 30 Jun 2000 19:57:49 +0000 Subject: [PATCH] Fix the problem with ./buildconf not working right out of CVS. The general problem, is that we were using AC_CONFIG_AUX_DIR_DEFAULT, which the autoconf source says shouldn't be called directly. It should be called using AC_REQUIRE, but I couldn't make that work. So, since we know exactly where the files that we are looking for are located, we'll just point autoconf directly to them, and ignore all of the hoops. :-) I am not convinced the AC_CONFIG_AUX_DIR(.) call that I am using is strictly necessary, but it doesn't cause any problems and it logically makes sense. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85733 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index fe7e37dc81..9f13cb1705 100644 --- a/configure.in +++ b/configure.in @@ -2,15 +2,15 @@ dnl ## Process this file with autoconf to produce a configure script AC_PREREQ(2.13) AC_INIT(acinclude.m4) + +AC_CONFIG_HEADER(include/ap_config_auto.h) +AC_CONFIG_AUX_DIR(.) dnl ## This is the central place where Apache's version should be kept. dnl AM_INIT_AUTOMAKE(apache, 2.0-dev) VERSION="apache-2.0-dev" -AC_CONFIG_HEADER(include/ap_config_auto.h) -AC_CONFIG_AUX_DIR_DEFAULT - APACHE_VERSION=$VERSION APACHE_SUBST(APACHE_VERSION) -- 2.40.0