From: Otto Moerbeek Date: Thu, 5 Jun 2025 07:50:07 +0000 (+0200) Subject: Set fortify to auto, avoids warning on ubuntu-noble X-Git-Tag: dnsdist-2.0.0-beta1~52^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=edb16bcb9115b96a6bb9d2d41c8efe8ba47a0ffb;p=thirdparty%2Fpdns.git Set fortify to auto, avoids warning on ubuntu-noble Signed-off-by: Otto Moerbeek --- diff --git a/pdns/recursordist/meson_options.txt b/pdns/recursordist/meson_options.txt index 704745410f..2a88e555f5 100644 --- a/pdns/recursordist/meson_options.txt +++ b/pdns/recursordist/meson_options.txt @@ -2,7 +2,7 @@ option('lua', type: 'combo', choices: ['auto', 'luajit', 'lua'], value: 'auto', option('hardening', type: 'feature', value: 'auto', description: 'Compiler security checks') option('hardening-experimental-cf', type: 'combo', choices: ['disabled', 'full', 'branch', 'return', 'check'], value: 'disabled', description: 'Control Flow hardening') option('hardening-experimental-scp', type: 'feature', value: 'disabled', description: 'Stack Clash Protection') -option('hardening-fortify-source', type: 'combo', choices: ['auto', 'disabled', '1', '2', '3'], value: '2', description: 'Source fortification level') +option('hardening-fortify-source', type: 'combo', choices: ['auto', 'disabled', '1', '2', '3'], value: 'auto', description: 'Source fortification level') option('signers-libsodium', type: 'feature', value: 'auto', description: 'Enable libsodium-based signers') option('signers-libcrypto', type: 'feature', value: 'auto', description: 'Enable OpenSSL libcrypto-based signers)') option('signers-libcrypto-path', type: 'string', value: '', description: 'Custom path to find OpenSSL libcrypto')