From: Nicki Křížek Date: Wed, 27 May 2026 15:26:15 +0000 (+0000) Subject: Define DEVELOPER_MODE in developer-mode builds X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=d9aeee7901273bdc9b0c6741c1683f433f6d7b21;p=thirdparty%2Fbind9.git Define DEVELOPER_MODE in developer-mode builds So that build-time consumers (e.g. feature-test) can detect developer mode through a single dedicated symbol rather than proxying through implementation-detail defines like ISC_MEM_TRACKLINES. Assisted-by: Claude:claude-opus-4-7 --- diff --git a/meson.build b/meson.build index 5e28e4175ba..6319ee066f9 100644 --- a/meson.build +++ b/meson.build @@ -330,6 +330,7 @@ if not cc.compiles(constexpr_test, name: 'usage of constexpr') endif if developer_mode + config.set('DEVELOPER_MODE', 1) config.set('ISC_LIST_CHECKINIT', 1) config.set('ISC_MEM_TRACKLINES', 1) config.set('ISC_MUTEX_ERROR_CHECK', 1)