Date: Mon, 12 Apr 2021 19:31:17 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 7bf077f8e2f4 - main - devel/godot2: stop using builtin libpng Message-ID: <202104121931.13CJVHGX005893@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=7bf077f8e2f461e29376068022378f27cc314aa0 commit 7bf077f8e2f461e29376068022378f27cc314aa0 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-04-12 19:28:38 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-04-12 19:28:38 +0000 devel/godot2: stop using builtin libpng platform/x11/detect.py actually forces builtin libpng if builtin freetype or zlib is used. Use the system ones. This also fixes build on powerpc64le, since builtin libpng is not built with VSX. PR: 254703 Approved by: FreeBSD@ShaneWare.Biz (maintainer) --- devel/godot2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/godot2/Makefile b/devel/godot2/Makefile index 8e8735d530b4..1a990dfdfceb 100644 --- a/devel/godot2/Makefile +++ b/devel/godot2/Makefile @@ -29,7 +29,7 @@ USE_GL= gl glu USE_GITHUB= yes GH_ACCOUNT= godotengine -MAKE_ARGS+= platform=x11 builtin_speex=no builtin_libmpcdec=no verbose=yes +MAKE_ARGS+= platform=x11 builtin_speex=no builtin_libmpcdec=no verbose=yes builtin_libpng=no builtin_freetype=no builtin_zlib=no MAKE_ARGS+= ${MAKE_ARGS_${CHOSEN_COMPILER_TYPE}} MAKE_ARGS_clang= use_llvm=yes CXXFLAGS+= -DGLEW_NO_GLU -DRTAUDIO_ENABLED -DCRIOGET_NOT_NEEDED
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104121931.13CJVHGX005893>