diff options
author | kris <kris@FreeBSD.org> | 2004-03-07 13:01:35 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-07 13:01:35 +0800 |
commit | 7d8b061b1e0e083f7e9a2185cba42d48d1b652a5 (patch) | |
tree | bde819731d6e99163b0110b7b14144e143df819b /net | |
parent | c91a49d00dfde912af17052b843b65e12626ab78 (diff) | |
download | freebsd-ports-gnome-7d8b061b1e0e083f7e9a2185cba42d48d1b652a5.tar.gz freebsd-ports-gnome-7d8b061b1e0e083f7e9a2185cba42d48d1b652a5.tar.zst freebsd-ports-gnome-7d8b061b1e0e083f7e9a2185cba42d48d1b652a5.zip |
BROKEN on ia64 and amd64: Does not compile (needs -fPIC)
Diffstat (limited to 'net')
-rw-r--r-- | net/ngrep-lib/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/ngrep-lib/Makefile b/net/ngrep-lib/Makefile index ab7453e06260..21a85f55f421 100644 --- a/net/ngrep-lib/Makefile +++ b/net/ngrep-lib/Makefile @@ -20,4 +20,10 @@ CONFIGURE_ARGS+=--prefix=${PREFIX} -without-restart INSTALLS_SHLIB= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not compile on ia64 or amd64 (needs -fPIC)" +.endif + +.include <bsd.port.post.mk> |