From 714ec0c4dac7f9c6ef557e8f30e687453d145042 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Fri, 7 Mar 2025 21:04:20 -0700 Subject: [PATCH] meson: Require libcurl --- meson.build | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index 17737c536b..3e052047c5 100644 --- a/meson.build +++ b/meson.build @@ -1383,12 +1383,9 @@ if not get_option('blkio').auto() or have_block method: 'pkg-config', required: get_option('blkio')) endif -curl = not_found -if not get_option('curl').auto() or have_block - curl = dependency('libcurl', version: '>=7.29.0', - method: 'pkg-config', - required: get_option('curl')) -endif +curl = dependency('libcurl', version: '>=7.29.0', + method: 'pkg-config', + required: true) libudev = not_found if host_os == 'linux' and (have_system or have_tools) libudev = dependency('libudev',