summaryrefslogtreecommitdiff
path: root/www/apache/patches/patch-ah
diff options
context:
space:
mode:
Diffstat (limited to 'www/apache/patches/patch-ah')
-rw-r--r--www/apache/patches/patch-ah45
1 files changed, 0 insertions, 45 deletions
diff --git a/www/apache/patches/patch-ah b/www/apache/patches/patch-ah
deleted file mode 100644
index 55da695b516..00000000000
--- a/www/apache/patches/patch-ah
+++ /dev/null
@@ -1,45 +0,0 @@
-$NetBSD: patch-ah,v 1.6 2008/02/23 05:16:34 obache Exp $
-
---- src/support/apachectl.orig 2008-02-23 04:22:56.000000000 +0000
-+++ src/support/apachectl
-@@ -43,6 +43,9 @@ PIDFILE=/usr/local/apache/logs/httpd.pid
- # the path to your httpd binary, including options if necessary
- HTTPD='/usr/local/apache/src/httpd'
- #
-+# shared object search path
-+LD_LIBRARY_PATH=
-+export LD_LIBRARY_PATH
- # a command that outputs a formatted text version of the HTML at the
- # url given on the command line. Designed for lynx, however other
- # programs may work.
-@@ -139,6 +142,30 @@ do
- fi
- fi
- ;;
-+ restartssl|sslrestart|restart-SSL)
-+ if [ $RUNNING -eq 0 ]; then
-+ echo "$0 $ARG: httpd not running, trying to start"
-+ if $HTTPD -DSSL ; then
-+ echo "$0 $ARG: httpd started"
-+ else
-+ echo "$0 $ARG: httpd could not be started"
-+ ERROR=5
-+ fi
-+ else
-+ if $HTTPD -t >/dev/null 2>&1; then
-+ if kill -HUP $PID ; then
-+ echo "$0 $ARG: httpd restarted"
-+ else
-+ echo "$0 $ARG: httpd could not be restarted"
-+ ERROR=6
-+ fi
-+ else
-+ echo "$0 $ARG: configuration broken, ignoring restart"
-+ echo "$0 $ARG: (run 'apachectl configtest' for details)"
-+ ERROR=6
-+ fi
-+ fi
-+ ;;
- graceful)
- if [ $RUNNING -eq 0 ]; then
- echo "$0 $ARG: httpd not running, trying to start"