mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
- change MPM backend from static to dynamic, but keep mpm_prefork for compatiblity with e.g. php modules - install dedicated MPM load file in case httpd was build with modular MPM (modules.d/000_mpm_prefork_fallback.conf) - disable SSLv3 and SSLv2 fallback in sample httpd-ssl-conf - use @sample macro instead EXAMPLESDIR - add some SSLCipherSuite examples for OpenSSL >= 1.0.x - add libressl support [1] - add pkg-install script (to handle new modular MPM build) - build now most all modules, so users using packages don't have to run a custom build for missing modules - fix suexec mode PR: 196139 [1] MFH: 2015Q1
28 lines
1 KiB
Text
28 lines
1 KiB
Text
--- support/Makefile.in.orig 2012-12-11 10:37:25 UTC
|
|
+++ support/Makefile.in
|
|
@@ -17,10 +17,10 @@ install:
|
|
@test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
|
|
@test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir)
|
|
@cp -p $(top_builddir)/server/httpd.exp $(DESTDIR)$(libexecdir)
|
|
- @for i in apxs dbmmanage; do \
|
|
+ @for i in apxs dbmmanage split-logfile; do \
|
|
if test -f "$(builddir)/$$i"; then \
|
|
- cp -p $$i $(DESTDIR)$(bindir); \
|
|
- chmod 755 $(DESTDIR)$(bindir)/$$i; \
|
|
+ cp -p $$i $(DESTDIR)$(sbindir); \
|
|
+ chmod 755 $(DESTDIR)$(sbindir)/$$i; \
|
|
fi ; \
|
|
done
|
|
@for i in apachectl; do \
|
|
@@ -30,10 +30,7 @@ install:
|
|
fi ; \
|
|
done
|
|
@if test -f "$(builddir)/envvars-std"; then \
|
|
- cp -p envvars-std $(DESTDIR)$(sbindir); \
|
|
- if test ! -f $(DESTDIR)$(sbindir)/envvars; then \
|
|
- cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \
|
|
- fi ; \
|
|
+ cp -p envvars-std $(DESTDIR)$(sbindir)/envvars; \
|
|
fi
|
|
|
|
htpasswd.lo: passwd_common.h
|