diff options
author | marino <marino@pkgsrc.org> | 2011-12-09 01:32:58 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-12-09 01:32:58 +0000 |
commit | ee4e55df417989d6302146a780c86ab53846c875 (patch) | |
tree | f6362c0c5702339bb4b0d28c8d58695c005ecff4 /emulators/gnuboy-sdl | |
parent | 8c658e496c0716d5b1768d7c6e51a6c136f42751 (diff) | |
download | pkgsrc-ee4e55df417989d6302146a780c86ab53846c875.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/gnuboy-sdl')
-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" |