From a16f650bd4732b99915a9015f8326ad75ff83626 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Tue, 13 May 2025 13:47:13 +0200 Subject: [PATCH] meson: Add missing conditions Follow up for 6350d2dbd97746440b9c8303ddc140ffda568732 --- src/journal-remote/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/journal-remote/meson.build b/src/journal-remote/meson.build index 7ccf060dce6..7916e9b3134 100644 --- a/src/journal-remote/meson.build +++ b/src/journal-remote/meson.build @@ -66,10 +66,12 @@ executables += [ }, test_template + { 'sources' : files('test-journal-header-util.c'), + 'conditions' : ['HAVE_LIBCURL'], 'objects' : ['systemd-journal-upload'], }, fuzz_template + { 'sources' : files('fuzz-journal-remote.c'), + 'conditions' : ['HAVE_MICROHTTPD'], 'objects' : ['systemd-journal-remote'], 'dependencies' : common_deps + [libmicrohttpd], }, -- 2.47.3