diff options
author | marino <marino> | 2011-12-09 01:32:58 +0000 |
---|---|---|
committer | marino <marino> | 2011-12-09 01:32:58 +0000 |
commit | 249a957f93acb2a6f638721fed6e3b943d9cd019 (patch) | |
tree | f6362c0c5702339bb4b0d28c8d58695c005ecff4 /emulators | |
parent | 1b3d65b2320c32ffddd5d073410bc713254bd033 (diff) | |
download | pkgsrc-249a957f93acb2a6f638721fed6e3b943d9cd019.tar.gz |
emulators/gnuboy-sdl: Fix for modern gcc
The deprecated force-mem flag is not present on later gcc compilers.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/gnuboy-sdl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/gnuboy-sdl/Makefile b/emulators/gnuboy-sdl/Makefile index fa8ad19932d..c468e481859 100644 --- a/emulators/gnuboy-sdl/Makefile +++ b/emulators/gnuboy-sdl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2008/04/07 17:17:00 joerg Exp $ +# $NetBSD: Makefile,v 1.11 2011/12/09 01:32:58 marino Exp $ DISTNAME= gnuboy-1.0.3 PKGNAME= ${DISTNAME:S/-/-sdl-/} @@ -16,6 +16,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-sdl INSTALLATION_DIRS= bin share/doc/gnuboy-sdl share/examples/gnuboy-sdl +BUILDLINK_TRANSFORM+= rm:-fforce-mem .include "../../devel/SDL/buildlink3.mk" |