diff options
author | kris <kris@FreeBSD.org> | 2004-03-13 18:09:20 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-13 18:09:20 +0800 |
commit | abe0d7edebfe376d2a46522d0401e066129b428a (patch) | |
tree | beb218222b06a611492e85b688d5d6d00073da30 | |
parent | a90ef602b43e90664f228b7c01c742282f5bae45 (diff) | |
download | freebsd-ports-gnome-abe0d7edebfe376d2a46522d0401e066129b428a.tar.gz freebsd-ports-gnome-abe0d7edebfe376d2a46522d0401e066129b428a.tar.zst freebsd-ports-gnome-abe0d7edebfe376d2a46522d0401e066129b428a.zip |
BROKEN on !i386 and 4.x: Does not compile
-rw-r--r-- | net/wistumbler2/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/wistumbler2/Makefile b/net/wistumbler2/Makefile index 862afdc56b9f..0f3c9761c1b4 100644 --- a/net/wistumbler2/Makefile +++ b/net/wistumbler2/Makefile @@ -32,10 +32,16 @@ BROKEN= You need to upgrade you system MAKE_ENV= PREFIX=${LOCALBASE} USE_GTK=0 .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" || ${OSVERSION} < 500000 +BROKEN= "Does not compile on !i386 or 4.x" +.endif + pre-everything:: @${ECHO} "You may specify the following on the command line:" @${ECHO} "" @${ECHO} " NO_X=yes Disable The X(GTK2) Support." @${ECHO} "" -.include <bsd.port.mk> +.include <bsd.port.post.mk> |