diff options
author | kris <kris@FreeBSD.org> | 2005-03-27 02:11:50 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-03-27 02:11:50 +0000 |
commit | e5882c0c9694d9bbe122be4e033ed3d912a3ff0e (patch) | |
tree | 77a5596c0863515fd6f5f04ed5764b49754d7014 /www | |
parent | 085f7b7465c58a180601a412a307307b5ee5626b (diff) | |
download | FreeBSD-ports-e5882c0c9694d9bbe122be4e033ed3d912a3ff0e.zip FreeBSD-ports-e5882c0c9694d9bbe122be4e033ed3d912a3ff0e.tar.gz |
BROKEN on ia64: Shared libraries must be built with -fPIC
Approved by: portmgr (self)
Diffstat (limited to 'www')
-rw-r--r-- | www/wml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/wml/Makefile b/www/wml/Makefile index 75938ee..5f47736 100644 --- a/www/wml/Makefile +++ b/www/wml/Makefile @@ -60,8 +60,8 @@ MAN7= wml_intro.7 wml_macros.7 wml_tutorial.7 wml_faq.7 wml_tags.7 .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" -BROKEN= "Build fails on amd64 (needs to build shared libraries with -fPIC)" +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Build fails on amd64 or ia64 (needs to build shared libraries with -fPIC)" .endif .if ${PERL_LEVEL} < 500600 |