diff options
author | perky <perky@FreeBSD.org> | 2002-11-15 13:35:56 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2002-11-15 13:35:56 +0000 |
commit | 3912ac53f99ab036973c0883808ad6dc35cbcaa7 (patch) | |
tree | bae3d9204a7a8118c3f0503c1a76b8a9a7913793 /www/apache21 | |
parent | 1de2b39b0cc412b5043604bdc1ed7446400f027e (diff) | |
download | FreeBSD-ports-3912ac53f99ab036973c0883808ad6dc35cbcaa7.zip FreeBSD-ports-3912ac53f99ab036973c0883808ad6dc35cbcaa7.tar.gz |
o Change installbuilddir to $PREFIX/share/apache2/build to make porting
3rd party modules easy. [1]
o Include <limits.h> before <sys/syslimits.h> to reduce warnings on -CURRENT
PR: 44104 [1]
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org> [1]
Diffstat (limited to 'www/apache21')
-rw-r--r-- | www/apache21/Makefile | 1 | ||||
-rw-r--r-- | www/apache21/files/config.layout | 2 | ||||
-rw-r--r-- | www/apache21/files/patch-srclib:apr:include:apr.h | 17 | ||||
-rw-r--r-- | www/apache21/pkg-plist | 17 |
4 files changed, 28 insertions, 9 deletions
diff --git a/www/apache21/Makefile b/www/apache21/Makefile index f7f81e5..7f74043 100644 --- a/www/apache21/Makefile +++ b/www/apache21/Makefile @@ -7,6 +7,7 @@ PORTNAME= apache PORTVERSION= 2.0.43 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= http://www.apache.org/dist/httpd/ \ http://apache.mirrorcentral.com/dist/httpd/ \ diff --git a/www/apache21/files/config.layout b/www/apache21/files/config.layout index e4f8ca8..e1f6e37 100644 --- a/www/apache21/files/config.layout +++ b/www/apache21/files/config.layout @@ -7,7 +7,7 @@ mandir: ${prefix}/man sysconfdir: ${prefix}/etc/apache2 datadir: ${prefix}/www - installbuilddir: ${prefix}/share/apache2 + installbuilddir: ${prefix}/share/apache2/build errordir: ${datadir}/error iconsdir: ${datadir}/icons htdocsdir: ${datadir}/data diff --git a/www/apache21/files/patch-srclib:apr:include:apr.h b/www/apache21/files/patch-srclib:apr:include:apr.h new file mode 100644 index 0000000..f6e2e55 --- /dev/null +++ b/www/apache21/files/patch-srclib:apr:include:apr.h @@ -0,0 +1,17 @@ +--- srclib/apr/include/apr.h.in.orig Fri Nov 15 17:33:00 2002 ++++ srclib/apr/include/apr.h.in Fri Nov 15 17:33:10 2002 +@@ -299,11 +299,11 @@ + #endif + + /* header files for PATH_MAX, _POSIX_PATH_MAX */ +-#if APR_HAVE_SYS_SYSLIMITS_H +-#include <sys/syslimits.h> +-#endif + #if APR_HAVE_LIMITS_H + #include <limits.h> ++#endif ++#if APR_HAVE_SYS_SYSLIMITS_H ++#include <sys/syslimits.h> + #endif + + #if defined(PATH_MAX) diff --git a/www/apache21/pkg-plist b/www/apache21/pkg-plist index 755ba5f..b6aa937 100644 --- a/www/apache21/pkg-plist +++ b/www/apache21/pkg-plist @@ -203,14 +203,14 @@ sbin/httpd sbin/logresolve sbin/rotatelogs %%SUEXEC%%sbin/suexec -share/apache2/config_vars.mk -share/apache2/instdso.sh -share/apache2/library.mk -share/apache2/libtool -share/apache2/ltlib.mk -share/apache2/program.mk -share/apache2/rules.mk -share/apache2/special.mk +share/apache2/build/config_vars.mk +share/apache2/build/instdso.sh +share/apache2/build/library.mk +share/apache2/build/libtool +share/apache2/build/ltlib.mk +share/apache2/build/program.mk +share/apache2/build/rules.mk +share/apache2/build/special.mk %%PORTDOCS%%share/doc/apache2/LICENSE %%PORTDOCS%%share/doc/apache2/bind.html.en %%PORTDOCS%%share/doc/apache2/bind.html.ja.jis @@ -989,6 +989,7 @@ www/icons-dist/world2.png %%PORTDOCS%%@dirrm share/doc/apache2/faq %%PORTDOCS%%@dirrm share/doc/apache2/developer %%PORTDOCS%%@dirrm share/doc/apache2 +@dirrm share/apache2/build @dirrm share/apache2 @dirrm libexec/apache2 @dirrm lib/apache2 |