diff options
author | kris <kris@FreeBSD.org> | 2004-03-20 06:44:24 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-20 06:44:24 +0800 |
commit | 54604764590bb53a5e09073c453efdfbb8594200 (patch) | |
tree | 2a5aee5a6ef6f9dc39c1d8e2e31badd9147f1aad /www/mod_authenticache | |
parent | 5b47960df488708871b15e4761cf6cbe90ca62ac (diff) | |
download | freebsd-ports-gnome-54604764590bb53a5e09073c453efdfbb8594200.tar.gz freebsd-ports-gnome-54604764590bb53a5e09073c453efdfbb8594200.tar.zst freebsd-ports-gnome-54604764590bb53a5e09073c453efdfbb8594200.zip |
BROKEN on amd64 and ia64: Does not compile (shared library objects must be
compiled with -fPIC)
Diffstat (limited to 'www/mod_authenticache')
-rw-r--r-- | www/mod_authenticache/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/mod_authenticache/Makefile b/www/mod_authenticache/Makefile index a0477e4934ec..be248ec7da1e 100644 --- a/www/mod_authenticache/Makefile +++ b/www/mod_authenticache/Makefile @@ -18,4 +18,10 @@ WITH_APACHE2= YES USE_GMAKE= YES MAKE_ENV+= APXS="${APXS}" -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not compile on amd64 or ia64 (shared library objects must be compiled with -fPIC)" +.endif + +.include <bsd.port.post.mk> |