aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2024-04-23 17:36:07 -0500
committerDylan Baker <dylan@pnwbakers.com>2024-04-23 17:38:29 -0700
commit44c279a92063ad01ad26ef47b126fe180bc0947b (patch)
tree29f5b08c37e2ac5505a79c622d430b743b90cc36
parent4f94284013d257bf361b18da6c6d8c80e64cf24f (diff)
downloadmeson-44c279a92063ad01ad26ef47b126fe180bc0947b.zip
meson-44c279a92063ad01ad26ef47b126fe180bc0947b.tar.gz
meson-44c279a92063ad01ad26ef47b126fe180bc0947b.tar.bz2
Use dl instead of zlib for checking an external dependency
Fedora has switched to zlib-ng, which has a version of `1.3.0.zlib-ng`, causing AllPlatformTests.test_summary to fail. dl is much less likely to change format.
-rw-r--r--test cases/unit/71 summary/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/71 summary/meson.build b/test cases/unit/71 summary/meson.build
index 76fc545..6f16191 100644
--- a/test cases/unit/71 summary/meson.build
+++ b/test cases/unit/71 summary/meson.build
@@ -13,7 +13,7 @@ summary({'Some boolean': false,
summary({'missing prog': find_program('xyzzy', required: false),
'existing prog': find_program(get_option('python')).full_path(),
'missing dep': dependency('', required: false),
- 'external dep': dependency('zlib', required: false),
+ 'external dep': dependency('dl', required: false),
'internal dep': declare_dependency(),
'disabler': disabler(),
}, section: 'Stuff')