diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2023-05-19 06:11:44 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2023-05-19 06:13:18 +0000 |
commit | 77005af64c4a0166929192f6b7c461ae54f374ff (patch) | |
tree | ee6e06efd930289c458be43b23b6217de6c56615 | |
parent | 2c60d7519db4174b786d063b8a574d43cc2bc4cf (diff) | |
download | ports-77005af64c4a0166929192f6b7c461ae54f374ff.tar.gz ports-77005af64c4a0166929192f6b7c461ae54f374ff.zip |
graphics/gdk-pixbuf2: fix option variables
The Makefile was using
FOO_MESON_ENABLE= bar
instead of
FOO_MESON_ENABLED= bar
so those values were never passed to meson in the first place.
PR: 271472
-rw-r--r-- | graphics/gdk-pixbuf2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/gdk-pixbuf2/Makefile b/graphics/gdk-pixbuf2/Makefile index b94a26faf04a..8a4b3736a3d7 100644 --- a/graphics/gdk-pixbuf2/Makefile +++ b/graphics/gdk-pixbuf2/Makefile @@ -30,7 +30,7 @@ OPTIONS_DEFINE= JPEG MANPAGES PNG TIFF OPTIONS_DEFAULT=JPEG MANPAGES PNG TIFF JPEG_USES= jpeg -JPEG_MESON_ENABLE= jpeg +JPEG_MESON_ENABLED= jpeg MANPAGES_BUILD_DEPENDS= docbook-xsl>0:textproc/docbook-xsl \ rst2man:textproc/py-docutils @@ -38,9 +38,9 @@ MANPAGES_USE= gnome=libxslt:build MANPAGES_MESON_TRUE= man PNG_LIB_DEPENDS= libpng.so:graphics/png -PNG_MESON_ENABLE= png +PNG_MESON_ENABLED= png TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff -TIFF_MESON_ENABLE= tiff +TIFF_MESON_ENABLED= tiff .include <bsd.port.mk> |