]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Detect ext modules before auth backend modules
authorFred Morcos <fred.morcos@open-xchange.com>
Mon, 21 Aug 2023 14:43:00 +0000 (16:43 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:44 +0000 (13:28 +0100)
meson.build

index f3797b8bc08d7c4536d0d4e732495ca61cfce60c..47fb787f84dd9375edebf87ef4f610396ab27280 100644 (file)
@@ -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,