summaryrefslogtreecommitdiffstats
path: root/build/config_vars.sh.in (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * build/config_vars.sh.in: Improve comment language, no functional change.Joe Orton2021-03-111-1/+2
| | | | | | | [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1887480 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Remove test-suite (builddir-specific) varsJoe Orton2019-06-211-0/+1
| | | | | | | from installed config_vars.mk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1861767 13f79535-47bb-0310-9956-ffa450edef68
* Add an --enable-reduced-exports configure option to link libmain.aJoe Orton2019-06-201-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | using ld's --whole-archive mode and avoid building exports.c entirely. This reduces the size of a minimal httpd binary by 18% on Linux/x86_64 (687K to 560K) with no difference to the set of symbols available to modules. This option is only appropriate to use if using a shared libapr* build, hence is non-default. * configure.in: Add --enable-reduced-exports; disable httpdunit build if used. Define AP_FORCE_EXPORTS if not enabled (default) in place of AP_USING_AUTOCONF. * server/main.c (ap_suck_in_APR): Only build if AP_FORCE_EXPORTS is defined. * Makefile.in: Link libmain.la using LIBMAIN_LIB. * server/Makefile.in: Conditionally build exports.c into libmain. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1861685 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Clean more variables from installed Joe Orton2018-05-021-0/+3
| | | | | | | config_vars.mk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1830754 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Trim more variables from installed config_vars.mk.Joe Orton2017-11-281-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1816532 13f79535-47bb-0310-9956-ffa450edef68
* Use different variables to track normalRainer Jung2016-02-121-0/+2
| | | | | | | | | | | | | | | | modules and MPMs during build. Normal modules and MPMs follow different rules in the config, e.g. we are only allowed to have one active LoadModule for an MPM in the config. As a side effect, LoadModule for MPMs will now come before LoadModule for the normal modules. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730079 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Trim more stuff from installed config_vars.mk.Joe Orton2013-10-011-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1528035 13f79535-47bb-0310-9956-ffa450edef68
* Widen strip pattern to also match MOD_XML2ENC_LDADD.Rainer Jung2012-12-301-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1426975 13f79535-47bb-0310-9956-ffa450edef68
* more configure-time support for dynamically loadable MPMs:Jeff Trawick2009-11-031-1/+1
| | | | | | | | | | | | | | | . axe --with-mpm="shared" hack, replace with --enable-mpms-shared={all|list} . replace singular MPM_NAME with access to the list of enabled MPMs . replace singular MPM_SUBDIR with list MPM_SUBDIRS . enable OS/2 MPM in same manner as others with configure support instead of hard-coding in configure.in Current state: MPMs are built as static archives (but not linked to httpd) with --enable-mpms-shared, so they still have to be built with apxs to load dynamically. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@832228 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Fix error if APU_CONFIG is not defined.Joe Orton2009-03-241-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@757819 13f79535-47bb-0310-9956-ffa450edef68
* Enable to configure the https port - missing pieces.Guenter Knauf2007-12-251-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@606806 13f79535-47bb-0310-9956-ffa450edef68
* update license header textRoy T. Fielding2006-07-111-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@420990 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Check for the *-config scripts both at theJoe Orton2005-11-021-2/+13
| | | | | | | | DESTDIR-relocated path and at the not-relocated path, to cope with both builds with and without the bundled APR. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@330257 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Prepend DESTDIR to paths to installedJoe Orton2005-11-021-2/+2
| | | | | | | | | apr/apu-config scripts. Submitted by: Torsten Foertsch <torsten.foertsch gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@330246 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Expand LTFLAGS here, to fix `apxs -q LIBTOOL`Joe Orton2005-06-161-1/+1
| | | | | | | | | | again. PR: 32787 Submitted by: William Barker <william.barker wilshire.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190893 13f79535-47bb-0310-9956-ffa450edef68
* * configure.in: Define MKINSTALLDIRS and INSTALL in config_vars.mk.Joe Orton2005-06-131-0/+4
| | | | | | | | | | | | | | Don't use AC_PROG_INSTALL since any system "install" command is never used anyway. * build/rules.mk.in: Remove fixed reference to install.sh and mkdir.sh in abs_srcdir. * build/config_vars.sh: Munge definitions of MKINSTALLDIRS and INSTALL to use installed scripts. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190396 13f79535-47bb-0310-9956-ffa450edef68
* Sanitize the installed config_vars.mk to remove references to theJoe Orton2005-06-131-0/+60
build and source directories, and to remove variables which are internal to the httpd build system: * build/config_vars.sh.in: New file. * Makefile.in (build/config_vars.out): New target. (install-build): Install build/config_vars.out as config_vars.mk. * configure.in: Add include path for srclib/pcre to INCLUDES rather than CPPFLAGS, and use a topdir-relative not absolute path name. Generate build/config_vars.sh. Reviewed by: Paul Querna PR: 20874, 28145 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190392 13f79535-47bb-0310-9956-ffa450edef68