From: Fred Morcos Date: Mon, 21 Aug 2023 14:43:00 +0000 (+0200) Subject: Meson: Detect ext modules before auth backend modules X-Git-Tag: rec-5.1.0-alpha1~80^2~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f02790da829d06946789f3cb62b529b098f689c;p=thirdparty%2Fpdns.git Meson: Detect ext modules before auth backend modules --- 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,