Date: Sat, 16 Apr 2022 21:12:24 GMT From: Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: ed1bd5c59525 - main - graphics/GraphicsMagick: Fix build with libjxl installed Message-ID: <202204162112.23GLCOSN072296@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=ed1bd5c595259b8fd9bb8cfe64da36274b65e82f commit ed1bd5c595259b8fd9bb8cfe64da36274b65e82f Author: Oleg Sidorkin <osidorkin@gmail.com> AuthorDate: 2022-04-16 21:12:12 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2022-04-16 21:12:12 +0000 graphics/GraphicsMagick: Fix build with libjxl installed GraphicsMagick picks up libjxl when it is installed. However it requires libjxl API trunk and fails to build with the version from ports. Disable libjxl explicitly to fix the build. PR: 263352 --- graphics/GraphicsMagick/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/GraphicsMagick/Makefile b/graphics/GraphicsMagick/Makefile index e8359b086278..3fd27ea70ed8 100644 --- a/graphics/GraphicsMagick/Makefile +++ b/graphics/GraphicsMagick/Makefile @@ -16,7 +16,7 @@ USES= cpe libtool localbase pathfix tar:bzip2 CONFIGURE_ARGS= --enable-shared --enable-static \ --with-windows-font-dir=${WINDOWS_FONT_DIR} \ - --without-perl --without-trio + --without-jxl --without-perl --without-trio CONFIGURE_ENV= PTHREAD_LIBS=-lpthread GNU_CONFIGURE= yes INSTALL_TARGET= install-strip
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204162112.23GLCOSN072296>