diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-25 11:37:17 +0200 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-07-25 11:42:19 +0200 |
commit | 55e566dcfbb521cd98684f38bdaebb37529c6c8b (patch) | |
tree | d22679469f010725f2991d69634078bcb7512a39 | |
parent | 14fa8ef06789dd8133b5f13ddde05191e5e52918 (diff) | |
download | freebsd-ports-55e566dcfbb521cd98684f38bdaebb37529c6c8b.zip |
games/kevedit: Fix build with llvm16
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | games/kevedit/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/games/kevedit/Makefile b/games/kevedit/Makefile index ec18649986c9..385ffa048691 100644 --- a/games/kevedit/Makefile +++ b/games/kevedit/Makefile @@ -16,6 +16,13 @@ RUN_DEPENDS= cdrecord:sysutils/cdrtools USES= sdl USE_SDL= sdl + GNU_CONFIGURE= yes +.include <bsd.port.options.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400091 +CFLAGS+= -Wno-error=incompatible-function-pointer-types +.endif + .include <bsd.port.mk> |