From f2537ad41ecc4b84b8fd6763734b8713d60acc4f Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 6 Jun 2002 18:16:08 +0000 Subject: [PATCH] Fix apxs to allow "apxs -q installbuilddir" and to allow querying certain other variables from config_vars.mk. PR: 9316 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95549 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 4 ++++ support/apxs.in | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGES b/CHANGES index d659114a77..f7c275ef27 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.37 + *) Fix apxs to allow "apxs -q installbuilddir" and to allow + querying certain other variables from config_vars.mk. PR 9316 + [Jeff Trawick] + *) Added the "detached" attribute to the cgi_exec_info_t internals so that Win32 and Netware won't create a new window or console for each CGI invoked. PR 8387 diff --git a/support/apxs.in b/support/apxs.in index f6f1e38f84..299e2ff82d 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -71,6 +71,8 @@ get_config_vars("$installbuilddir/config_vars.mk",\%config_vars); my $prefix = get_vars("prefix"); my $CFG_PREFIX = $prefix; my $exec_prefix = get_vars("exec_prefix"); +my $datadir = get_vars("datadir"); +my $localstatedir = get_vars("localstatedir"); my $CFG_TARGET = get_vars("progname"); my $CFG_SYSCONFDIR = get_vars("sysconfdir"); my $CFG_CFLAGS = join ' ', map { get_vars($_) } -- 2.40.0