summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwhatdoineed2do/Ray <[email protected]>2023-11-27 18:26:18 +0000
committermouse <[email protected]>2023-11-30 14:53:42 +0800
commitc52d0c61491699379f6fa6f906e6acb28c22bb4f (patch)
tree497181c60d2b6f1456f59d0da3bd7504a905205f
parentd00fc0b68e9419ccdefbf2831ad2537bed8f35f4 (diff)
downloadeom-c52d0c61491699379f6fa6f906e6acb28c22bb4f.tar.bz2
eom-c52d0c61491699379f6fa6f906e6acb28c22bb4f.tar.xz
meson: explicit dep on -lm as required for Fedora35
-rw-r--r--meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 372547c..49bdbfd 100644
--- a/meson.build
+++ b/meson.build
@@ -53,6 +53,9 @@ all_deps = [
xml, gobject_introspection, xmp, exif, rsvg,
]
+m = cc.find_library('m', required : false)
+all_deps += [m]
+
z = dependency('zlib')
assert(cc.has_function('crc32', dependencies: [z]), 'zlib do not have crc32')
all_deps += [z]