From: Doug MacEachern Date: Thu, 30 Aug 2001 23:18:39 +0000 (+0000) Subject: gather all of the cflags for compiling with apxs X-Git-Tag: 2.0.26~371 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f22c773542d8600c5f968c50c2c1488cf5ce1d3d;p=apache gather all of the cflags for compiling with apxs git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90828 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/apxs.in b/support/apxs.in index 649f452c4f..9e306bf01d 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -71,7 +71,8 @@ get_config_vars("$prefix/build/config_vars.mk",\%config_vars); my $exec_prefix = get_vars("exec_prefix"); my $CFG_TARGET = get_vars("progname"); my $CFG_SYSCONFDIR = get_vars("sysconfdir"); -my $CFG_CFLAGS = get_vars("SHLTCFLAGS"); +my $CFG_CFLAGS = join ' ', map { get_vars($_) } + qw(SHLTCFLAGS CFLAGS NOTEST_CPPFLAGS EXTRA_CPPFLAGS EXTRA_CFLAGS); my $includedir = get_vars("includedir"); my $CFG_INCLUDEDIR = eval qq("$includedir"); my $CFG_CC = get_vars("CC");