summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2018-10-05 15:25:04 +0000
committerJoe Orton <jorton@apache.org>2018-10-05 15:25:04 +0000
commit0507bb7e88b65ad672f9686953ff09243c3afe84 (patch)
treee61c0728db054a2ad199c225c37f4a5bdba0e0fb /Makefile.in
parentb01a818821d208b41e8b5eba27186908b802df0a (diff)
downloadhttpd-0507bb7e88b65ad672f9686953ff09243c3afe84.tar.gz
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.in1
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 \