diff options
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 8d6fb809bc..ccad7cabf1 100644 --- a/meson.build +++ b/meson.build @@ -737,8 +737,8 @@ capstone = not_found capstone_opt = get_option('capstone') if capstone_opt in ['enabled', 'auto', 'system'] have_internal = fs.exists(meson.current_source_dir() / 'capstone/Makefile') - capstone = dependency('capstone', static: enable_static, - method: 'pkg-config', + capstone = dependency('capstone', version: '>=4.0', + static: enable_static, method: 'pkg-config', required: capstone_opt == 'system' or capstone_opt == 'enabled' and not have_internal) if capstone.found() |