summaryrefslogtreecommitdiff
path: root/www/wml
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-05-30 07:02:06 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-05-30 07:02:06 +0000
commit72848afb16f9884721864dc5b42384d200845ffd (patch)
treea86c03576f0bc2aaab8faabf35bf78f7eebed744 /www/wml
parentBROKEN on amd64: Configure fails (diff)
BROKEN on amd64: Needs to build shared libraries with -fPIC
Notes
Notes: svn path=/head/; revision=110360
Diffstat (limited to 'www/wml')
-rw-r--r--www/wml/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/www/wml/Makefile b/www/wml/Makefile
index f921b0636196..b005f847e9d9 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>