diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-31 14:39:37 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-31 14:39:37 +0000 |
commit | 87291628a003ec48c391b054b7af2e665b508852 (patch) | |
tree | e547a01d266234f21b6331aedf6177d67b9b98bd /emulators/gngeo | |
parent | 4503c12acd8f149d562b6439bea1f60a32cfe83d (diff) | |
download | ports-87291628a003ec48c391b054b7af2e665b508852.tar.gz ports-87291628a003ec48c391b054b7af2e665b508852.zip |
Fix build with clang by forcing gnu89 standard
Fix build in head without gcc installed
Notes
Notes:
svn path=/head/; revision=324056
Diffstat (limited to 'emulators/gngeo')
-rw-r--r-- | emulators/gngeo/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emulators/gngeo/Makefile b/emulators/gngeo/Makefile index 8e94e226d990..e56ccbb0673a 100644 --- a/emulators/gngeo/Makefile +++ b/emulators/gngeo/Makefile @@ -21,6 +21,8 @@ MAKE_JOBS_UNSAFE= yes CPPFLAGS+= ${CFLAGS} `${SDL_CONFIG} --cflags` -I${LOCALBASE}/include LDFLAGS+= `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib +USE_CSTD= gnu89 +MAKE_ARGS+= CC_FOR_BUILD=${CC} SUB_FILES= pkg-message |