diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-10-01 13:58:46 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-10-01 13:58:46 +0000 |
commit | 695c3189179e79c6b04be1018d393412fc01227a (patch) | |
tree | eec5f0512ea6b15decb7505901805cb18d8b9ee3 | |
parent | net/dhcpcd: fix build on GCC architectures (diff) |
games/nethack36: fix build on GCC architectures
Use C11 compiler:
In file included from ../include/isaac64.h:4,
from isaac64.c:17:
../include/integer.h:88: error: conflicting types for 'int64_t'
/usr/include/sys/_stdint.h:51: error: previous declaration of 'int64_t' was here
../include/integer.h:89: error: conflicting types for 'uint64_t'
/usr/include/sys/_stdint.h:71: error: previous declaration of 'uint64_t' was here
Approved by: mentors (implicit approval)
-rw-r--r-- | games/nethack36/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/nethack36/Makefile b/games/nethack36/Makefile index 44a9a1e970a4..1e988dcffe4b 100644 --- a/games/nethack36/Makefile +++ b/games/nethack36/Makefile @@ -16,7 +16,7 @@ LICENSE_NAME= NETHACK GENERAL PUBLIC LICENSE LICENSE_FILE= ${WRKSRC}/dat/license LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -USES= alias gmake ncurses tar:tgz +USES= alias compiler:c11 gmake ncurses tar:tgz WRKSRC= ${WRKDIR}/${TRUEPORTNAME}-${PORTVERSION} |