lib/zlib/meson.build: define ENABLE_ZLIB

Fixes #414
This commit is contained in:
Max Kellermann 2018-11-07 23:24:58 +01:00
parent b1fe105904
commit ad597a8ff0

View File

@ -1,4 +1,5 @@
zlib_dep = dependency('zlib', required: get_option('zlib')) zlib_dep = dependency('zlib', required: get_option('zlib'))
conf.set('ENABLE_ZLIB', zlib_dep.found())
if not zlib_dep.found() if not zlib_dep.found()
subdir_done() subdir_done()
endif endif