Meson: Fix issues in meson.build, remove building fuzz/

This commit is contained in:
Tim Rühsen 2018-12-08 13:50:36 +01:00
parent 2483cb608d
commit 77971566d3
1 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ endif
if ['libicu', 'auto'].contains(enable_runtime) or ['libicu', 'auto'].contains(enable_builtin)
libicu_dep = dependency('icu-uc', required : false)
if libidn2_dep.found()
if libicu_dep.found()
if enable_runtime == 'auto'
enable_runtime = 'libicu'
endif
@ -41,7 +41,7 @@ endif
if ['libidn', 'auto'].contains(enable_runtime) or ['libidn', 'auto'].contains(enable_builtin)
libidn_dep = dependency('libidn', required : false)
if libidn2_dep.found()
if libidn_dep.found()
if enable_runtime == 'auto'
enable_runtime = 'libidn'
endif
@ -101,4 +101,4 @@ subdir('include')
subdir('src')
subdir('tools')
subdir('tests')
subdir('fuzz')
#subdir('fuzz')