diff options
author | crees <crees@FreeBSD.org> | 2012-06-07 00:14:27 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2012-06-07 00:14:27 +0800 |
commit | f713c92e54c3fc69a15dc94e5089c859f6d33aa2 (patch) | |
tree | c499475f1e25fc09044e8f6294ab4008128a5885 /emulators | |
parent | f5008624e8ab7bf3f22461c427f675051c1ea6ce (diff) | |
download | freebsd-ports-gnome-f713c92e54c3fc69a15dc94e5089c859f6d33aa2.tar.gz freebsd-ports-gnome-f713c92e54c3fc69a15dc94e5089c859f6d33aa2.tar.zst freebsd-ports-gnome-f713c92e54c3fc69a15dc94e5089c859f6d33aa2.zip |
Remove obsolete OSVERSION check-- 6.X is no longer supported
PR: ports/168273
Submitted by: crees
Approved by: maintainer timeout (cyberbotx@cyberbotx.com)
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/zsnes/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/emulators/zsnes/Makefile b/emulators/zsnes/Makefile index 9169b432b3c5..0828d314e339 100644 --- a/emulators/zsnes/Makefile +++ b/emulators/zsnes/Makefile @@ -44,11 +44,7 @@ CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 LDFLAGS+= -L${LOCALBASE}/lib -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 602000 -IGNORE= needs zlib >= 1.2.3, it is available on FreeBSD >= 6.2 -.endif +.include <bsd.port.options.mk> .if defined(WITH_DEBUGGER) CONFIGURE_ARGS+= --enable-debugger @@ -95,4 +91,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/zsnes ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/linux/zsnes.1 ${MANPREFIX}/man/man1 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |