]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Cleanup the various-functions module
authorFred Morcos <fred.morcos@open-xchange.com>
Tue, 15 Aug 2023 13:11:21 +0000 (15:11 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:37 +0000 (13:28 +0100)
meson/various-functions/meson.build

index d371b28f46ed5aa4477949f47f4de8460b736cee..8c268d57202100012e2f88477aa7e70019c1be01 100644 (file)
@@ -1,5 +1,3 @@
-# Various Functions
-
 funcs = [
   'strcasestr',
   'localtime_r',
@@ -15,9 +13,10 @@ funcs = [
   'explicit_memset',
   'memset_s',
 ]
+
 foreach func: funcs
   found = cxx.has_function(func)
   define = 'HAVE_' + func.to_upper()
-  conf.set10(define, found, description: 'Whether we have ' + func)
+  conf.set(define, found, description: 'Have ' + func)
   summary(func, found, bool_yn: true, section: 'Various Functions')
 endforeach