diff options
author | Joe Orton <jorton@apache.org> | 2018-10-05 17:25:04 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2018-10-05 17:25:04 +0200 |
commit | 0507bb7e88b65ad672f9686953ff09243c3afe84 (patch) | |
tree | e61c0728db054a2ad199c225c37f4a5bdba0e0fb /Makefile.in | |
parent | * modules/cache/mod_cache_disk.c (write_headers): Handle (diff) | |
download | apache2-0507bb7e88b65ad672f9686953ff09243c3afe84.tar.xz apache2-0507bb7e88b65ad672f9686953ff09243c3afe84.zip |
Define "state directory" for storing persistent child-writable state,
with default from config.layout, configurable via DefaultStateDir.
* server/core.c (set_state_dir, ap_state_dir_relative):
New functions.
* config.layout, acinclude.m4, Makefile.in, configure.in: Define
statedir variables, drop davlockdb.
* include/ap_config_layout.h.in: Define DEFAULT_REL_STATEDIR,
DEFAULT_EXP_STATEDIR in place of _DAVLOCKDB.
* include/ap_mmn.h: Bump MMN minor.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1842929 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 1bd6e779e2..80683d9a49 100644 --- a/Makefile.in +++ b/Makefile.in @@ -218,6 +218,7 @@ install-cgi: install-other: @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) @test -d $(DESTDIR)$(runtimedir) || $(MKINSTALLDIRS) $(DESTDIR)$(runtimedir) + @test -d $(DESTDIR)$(statedir) || $(MKINSTALLDIRS) $(DESTDIR)$(statedir) @for ext in dll x; do \ file=apachecore.$$ext; \ if test -f $$file; then \ |