summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2021-08-05 11:28:12 +0200
committerMax Kellermann <max@musicpd.org>2021-08-05 11:28:23 +0200
commit4873159872bda1b973146e8f505b89eb22717f1f (patch)
tree8163491d03200869092bf8770657946bfe488072
parent968624035c0ae6755395bcb331cec3ad1f81f35e (diff)
meson.build: add "fallback" option to fmt dependency (for older Meson versions)
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 18e2bf7c3..84d7d5106 100644
--- a/meson.build
+++ b/meson.build
@@ -234,7 +234,7 @@ if boost_dep.version() == '1.67'
warning('Your Boost version 1.67 is known to be buggy, and the MPD build will fail. Please upgrade to Boost 1.68 or later.')
endif
-fmt_dep = dependency('fmt')
+fmt_dep = dependency('fmt', fallback: ['fmt', 'fmt_dep'])
log = static_library(
'log',