diff options
author | kris <kris@FreeBSD.org> | 2004-05-30 15:03:08 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-05-30 15:03:08 +0800 |
commit | b7f4c30375afbb8d7799cd48c85ff7bab879637b (patch) | |
tree | 8e0259b6737379dee7254c7e413aba8ce14da1e6 /databases/rrdtool | |
parent | 35e9e105b0a9ab809e6d6b39351fa08ce6c0f262 (diff) | |
download | freebsd-ports-gnome-b7f4c30375afbb8d7799cd48c85ff7bab879637b.tar.gz freebsd-ports-gnome-b7f4c30375afbb8d7799cd48c85ff7bab879637b.tar.zst freebsd-ports-gnome-b7f4c30375afbb8d7799cd48c85ff7bab879637b.zip |
BROKEN on amd64: Does not build (needs to build shared libraries with -fPIC)
Diffstat (limited to 'databases/rrdtool')
-rw-r--r-- | databases/rrdtool/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile index 08abd53a0e8d..8b30ad1a5b41 100644 --- a/databases/rrdtool/Makefile +++ b/databases/rrdtool/Makefile @@ -36,6 +36,12 @@ MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} CONFIGURE_ARGS+= --with-latin2 .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (needs to build shared libraries with -fPIC)" +.endif + pre-extract: .if !defined(WITH_LATIN2) @${ECHO_MSG} "" @@ -51,4 +57,4 @@ post-install: @${ECHO_MSG} "############################################################################" .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |