diff options
author | kris <kris@FreeBSD.org> | 2004-05-30 07:02:06 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-05-30 07:02:06 +0000 |
commit | 35e9e105b0a9ab809e6d6b39351fa08ce6c0f262 (patch) | |
tree | 0b946359ed9631e4de813d20b2a5cfe6c96528cf /www/wml | |
parent | 5d3b720eb90b41f8656eb31a54488b99fc03abdf (diff) | |
download | FreeBSD-ports-35e9e105b0a9ab809e6d6b39351fa08ce6c0f262.zip FreeBSD-ports-35e9e105b0a9ab809e6d6b39351fa08ce6c0f262.tar.gz |
BROKEN on amd64: Needs to build shared libraries with -fPIC
Diffstat (limited to 'www/wml')
-rw-r--r-- | www/wml/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/wml/Makefile b/www/wml/Makefile index f921b06..b005f84 100644 --- a/www/wml/Makefile +++ b/www/wml/Makefile @@ -51,6 +51,12 @@ CAT7= wml_barebone.7 \ 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)" +.endif + # catpages are usually not installed, so they are not compressed. # But they are really needed as docs, so we compress manually... .if !defined(NOMANCOMPRESS) @@ -69,4 +75,4 @@ post-build: test: @cd ${WRKSRC} && ${MAKE} test -.include <bsd.port.mk> +.include <bsd.port.post.mk> |