]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Use link_with for ext modules
authorFred Morcos <fred.morcos@open-xchange.com>
Tue, 22 Aug 2023 14:05:21 +0000 (16:05 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:46 +0000 (13:28 +0100)
ext/arc4random/meson.build
ext/ipcrypt/meson.build
ext/json11/meson.build
ext/yahttp/yahttp/meson.build

index fd83d8101d8c2fede664c4b26ec9b5bd040b2fe1..977b0664072074235177e4df159fe2c6c217eab0 100644 (file)
@@ -15,6 +15,6 @@ lib_arc4random = static_library(
 )
 
 dep_arc4random = declare_dependency(
-  link_whole: lib_arc4random,
+  link_with: lib_arc4random,
   include_directories: include_directories('.'),
 )
index f6445c1a08e2487233f965a3ddecdba39a2b6799..b16d2badb7e8f008a0fb692941ba687962fca407 100644 (file)
@@ -8,6 +8,6 @@ lib_ipcrypt = static_library(
 )
 
 dep_ipcrypt = declare_dependency(
-  link_whole: lib_ipcrypt,
+  link_with: lib_ipcrypt,
   include_directories: include_directories('.'),
 )
index de6cf714c54f02b1d9d4f14c76e041041936a233..678d77c39275da123ad2003f30c9ed80e04d65a5 100644 (file)
@@ -7,6 +7,6 @@ lib_json11 = static_library(
 )
 
 dep_json11 = declare_dependency(
-  link_whole: lib_json11,
+  link_with: lib_json11,
   include_directories: include_directories('.'),
 )
index 5fe68fe093650db57e2c381bd9852599f62d3678..2704d4798cc714dd79b32e2e6142d6e9274bd6b3 100644 (file)
@@ -17,6 +17,6 @@ lib_yahttp = static_library(
 )
 
 dep_yahttp = declare_dependency(
-  link_whole: lib_yahttp,
+  link_with: lib_yahttp,
   include_directories: include_directories('..'),
 )