diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-12-08 03:24:30 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-12-08 03:24:30 +0800 |
commit | 695e65927376cda9fc884d8f6a460295c666a7bc (patch) | |
tree | 1f7f02a0f3826d47e1b40e29ab39e26217700742 /www | |
parent | e9f65f8eabcd4e3780e345725c8f80fdd14a4de0 (diff) | |
download | freebsd-ports-graphics-695e65927376cda9fc884d8f6a460295c666a7bc.tar.gz freebsd-ports-graphics-695e65927376cda9fc884d8f6a460295c666a7bc.tar.zst freebsd-ports-graphics-695e65927376cda9fc884d8f6a460295c666a7bc.zip |
Apache 2.2 with the worker MPM enabled.
WWW: http://httpd.apache.org/
PR: ports/151969
Submitted by: Tom Judge <tom at tomjudge.com>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/apache22-worker-mpm/Makefile | 18 | ||||
-rw-r--r-- | www/apache22-worker-mpm/pkg-descr | 3 |
3 files changed, 22 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 1f04f90b239..33782b90f34 100644 --- a/www/Makefile +++ b/www/Makefile @@ -29,6 +29,7 @@ SUBDIR += apache22 SUBDIR += apache22-peruser-mpm SUBDIR += apache22-prefork-mpm + SUBDIR += apache22-worker-mpm SUBDIR += apercu SUBDIR += aria SUBDIR += aria2 diff --git a/www/apache22-worker-mpm/Makefile b/www/apache22-worker-mpm/Makefile new file mode 100644 index 00000000000..5a9a3540ae1 --- /dev/null +++ b/www/apache22-worker-mpm/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: apache22-worker-mpm +# Date created: 2010-11-5 +# Whom: Tom Judge <tom@tomjudge.com> +# +# $FreeBSD$ +# + + +MASTERDIR= ${.CURDIR}/../apache22 + +MAINTAINER= apache@FreeBSD.org + +WITH_MPM= worker + +LATEST_LINK= apache22-worker-mpm +DESCR= ${.CURDIR}/pkg-descr + +.include "${MASTERDIR}/Makefile" diff --git a/www/apache22-worker-mpm/pkg-descr b/www/apache22-worker-mpm/pkg-descr new file mode 100644 index 00000000000..9056131b7cd --- /dev/null +++ b/www/apache22-worker-mpm/pkg-descr @@ -0,0 +1,3 @@ +Apache 2.2 with the worker MPM enabled. + +WWW: http://httpd.apache.org/ |