diff options
author | whatdoineed2do/Ray <[email protected]> | 2023-11-27 18:26:18 +0000 |
---|---|---|
committer | mouse <[email protected]> | 2023-11-30 14:53:42 +0800 |
commit | c52d0c61491699379f6fa6f906e6acb28c22bb4f (patch) | |
tree | 497181c60d2b6f1456f59d0da3bd7504a905205f | |
parent | d00fc0b68e9419ccdefbf2831ad2537bed8f35f4 (diff) | |
download | eom-c52d0c61491699379f6fa6f906e6acb28c22bb4f.tar.bz2 eom-c52d0c61491699379f6fa6f906e6acb28c22bb4f.tar.xz |
meson: explicit dep on -lm as required for Fedora35
-rw-r--r-- | meson.build | 3 |
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] |