meson: clarify xxhash error message

We do not need to mention the details of the check in the message
as those are already logged by meson when doing the check. Instead
mention why this is an error to make it more clear it is related to
the xxhash_muxer option.

Fix #397
This commit is contained in:
Marvin Scholz
2025-12-23 10:12:58 +01:00
committed by Jean-Baptiste Kempf
co-authored by Jean-Baptiste Kempf
parent 549a6a0983
commit bf82cfa74e
+1 -1
View File
@@ -60,7 +60,7 @@ if not get_option('xxhash_muxer').disabled()
xxh3_found = true
elif get_option('xxhash_muxer').enabled()
# manual error since 'required' kw arg in has_header_symbol() was only added in meson 0.50
error( 'C symbol XXH3_createState not found in header xxhash.h')
error( 'Requested xxhash_muxer to be built, but no usable xxhash.h was found.')
endif
endif