From: Claudio Jeker Subject: games/julius kind of needs ports-gcc To: Brian Callahan Cc: ports@openbsd.org Date: Mon, 15 Dec 2025 17:56:49 +0100 games/julius uses -Wpedantic which is not provided by base-gcc (it only knows -pedantic). Using ports-gcc solves this in the simplest way. -- :wq Claudio Index: Makefile =================================================================== RCS file: /cvs/ports/games/julius/Makefile,v diff -u -p -r1.21 Makefile --- Makefile 5 Sep 2025 17:56:19 -0000 1.21 +++ Makefile 15 Dec 2025 12:53:30 -0000 @@ -14,6 +14,10 @@ WANTLIB += SDL2 SDL2_mixer c m png pthre SITES = https://github.com/bvschaik/julius/releases/download/v${V}/ +# -Wpedantic +COMPILER = base-clang ports-gcc +COMPILER_LANGS= c + MODULES = devel/cmake LIB_DEPENDS = devel/sdl2-mixer \