diff options
author | johans <johans@FreeBSD.org> | 2009-01-13 03:32:05 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2009-01-13 03:32:05 +0800 |
commit | 0e1cf806845a6e4354c11ce0dbc430585e7329a2 (patch) | |
tree | 6c9f1491d5c0cb5ae177e4aebfb51dfa0e9f920e /emulators/openmsx | |
parent | 14e670cccd13d9234f15308835bf102f185ccc70 (diff) | |
download | freebsd-ports-gnome-0e1cf806845a6e4354c11ce0dbc430585e7329a2.tar.gz freebsd-ports-gnome-0e1cf806845a6e4354c11ce0dbc430585e7329a2.tar.zst freebsd-ports-gnome-0e1cf806845a6e4354c11ce0dbc430585e7329a2.zip |
Require modern gcc to compile on FreeBSD-6/amd64
Reported by: pointyhat via pav
Diffstat (limited to 'emulators/openmsx')
-rw-r--r-- | emulators/openmsx/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emulators/openmsx/Makefile b/emulators/openmsx/Makefile index d3e7b9fb7f91..c1afe3774108 100644 --- a/emulators/openmsx/Makefile +++ b/emulators/openmsx/Makefile @@ -36,4 +36,10 @@ USE_SDL= sdl image ttf MAKE_ARGS+= INSTALL_DOC_DIR=${WRKSRC}/dummy .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if (${ARCH} == "amd64") +USE_GCC= 4.2+ +.endif + +.include <bsd.port.post.mk> |