From: Remi Gacogne Date: Tue, 18 Feb 2025 09:14:54 +0000 (+0100) Subject: dnsdist: Remove `time_t`-related checks, we do not care X-Git-Tag: dnsdist-2.0.0-alpha1~30^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=734544f0aca6ae1f6ea1ebcb255b2e313e52cf2d;p=thirdparty%2Fpdns.git dnsdist: Remove `time_t`-related checks, we do not care --- diff --git a/meson/atomics/meson.build b/meson/atomics/meson.build index 47bf92ef88..fddd027d32 100644 --- a/meson/atomics/meson.build +++ b/meson/atomics/meson.build @@ -1,6 +1,7 @@ dep_atomics = dependency('', required: false) need_latomic = false +fs = import('fs') prog = fs.read('atomic_add_fetch.cc') if not cxx.links(prog, name: '-latomic is not needed for using __atomic builtins') lib_atomic = cxx.find_library('atomic', disabler: true, required: false) diff --git a/pdns/dnsdistdist/meson.build b/pdns/dnsdistdist/meson.build index 0939553368..2fbfdd6b8a 100644 --- a/pdns/dnsdistdist/meson.build +++ b/pdns/dnsdistdist/meson.build @@ -38,8 +38,6 @@ subdir('meson' / 'compiler-setup') # Common compiler setup subdir('meson' / 'summary') # Print a system/project summary subdir('meson' / 'sysconfdir') # Sysconfdir subdir('meson' / 'platform') # Platform detection -subdir('meson' / 'timet-size') # Check the size of time_t -subdir('meson' / 'timet-sign') # Check the sign of time_t subdir('meson' / 'atomics') # Check atomics support subdir('meson' / 'pthread-headers') # Check pthread headers subdir('meson' / 'pthread-setname') # Pthread setname madness