Building with meson without zlib does not work
I just broke something accidentally and got the following error:
util/meson.build:54:2: ERROR: Unknown variable "inccairoscript".
This variable is defined in util/cairo-script/meson.build
, but that is only subdir()
d in util/meson.build
if CAIRO_HAS_INTERPRETER
is defined, which is only defined if zlib_dep.found()
(in meson.build
). Thus, I bet the above error would also occur when zlib is not found (while I only got it due to a typo).
Edited by Uli Schlachter