From 0f02790da829d06946789f3cb62b529b098f689c Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Mon, 21 Aug 2023 16:43:00 +0200 Subject: [PATCH] Meson: Detect ext modules before auth backend modules --- meson.build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index f3797b8bc0..47fb787f84 100644 --- a/meson.build +++ b/meson.build @@ -102,6 +102,10 @@ endif # endif # TODO Generate pdns_server.1 manpage +# Ext +ext_modules = ['arc4random', 'yahttp', 'ipcrypt', 'json11'] +subdir('ext') + # Modules all_modules = { 'bind': [], @@ -152,10 +156,6 @@ conf.set_quoted( # Generate config.h config_h = configure_file(configuration: conf, output: 'config.h') -# Ext -ext_modules = ['yahttp', 'ipcrypt', 'json11'] -subdir('ext') - deps = [ dep_pdns, dep_platform, -- 2.47.2