diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-06-19 15:02:22 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-06-19 15:02:22 +0000 |
commit | 4da30b624d5251e462c1769aafc95320cd91ce21 (patch) | |
tree | 50591819464ce9e1ffb1642dc928b6d75f08d465 | |
parent | a54d3608cf3c0e149ca61cedce17e3854d12ef4b (diff) |
games/ltris: fix build on GCC architectures
Use newer GCC:
cc1: error: unrecognized command line option "-Wno-int-conversion"
Notes
Notes:
svn path=/head/; revision=539620
-rw-r--r-- | games/ltris/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/ltris/Makefile b/games/ltris/Makefile index 754a1c3880be..b96d609a1808 100644 --- a/games/ltris/Makefile +++ b/games/ltris/Makefile @@ -13,7 +13,7 @@ COMMENT= Tetris clone but a good one with bunch of cool features LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= gmake localbase sdl +USES= compiler:c11 gmake localbase sdl USE_SDL= mixer sdl GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var/games |