Skip to content

Commit

Permalink
graphics/gdk-pixbuf2: fix option variables
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tcberner committed May 19, 2023
1 parent 2c60d75 commit 77005af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions graphics/gdk-pixbuf2/Makefile
Expand Up @@ -30,17 +30,17 @@ 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
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>

0 comments on commit 77005af

Please sign in to comment.