diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-03-27 02:11:50 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-03-27 02:11:50 +0000 |
commit | 054b0bd4946a95c52cb88f6e67405bc496d34775 (patch) | |
tree | 7bfdaf000ed2da633e8192b2a5da2d9811a920c0 /www/wml | |
parent | BROKEN on sparc64: does not compile (diff) |
BROKEN on ia64: Shared libraries must be built with -fPIC
Approved by: portmgr (self)
Notes
Notes:
svn path=/head/; revision=132075
Diffstat (limited to 'www/wml')
-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 75938eefa17e..5f47736beccf 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 |