Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.1 KiB
Meson
58 lines
1.1 KiB
Meson
# Build settings based on the upstream Xcode project.
|
|
# See: https://github.com/apple-oss-distributions/libresolv/blob/main/libresolv.xcodeproj/project.pbxproj
|
|
|
|
# Project settings
|
|
project('libresolv', 'c', version : '@version@')
|
|
|
|
|
|
# Dependencies
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
# Libraries
|
|
libresolv = library(
|
|
'resolv',
|
|
darwin_versions : '1',
|
|
install : true,
|
|
sources : [
|
|
'base64.c',
|
|
'dns.c',
|
|
'dns_async.c',
|
|
'dns_util.c',
|
|
'dst_api.c',
|
|
'dst_hmac_link.c',
|
|
'dst_support.c',
|
|
'ns_date.c',
|
|
'ns_name.c',
|
|
'ns_netint.c',
|
|
'ns_parse.c',
|
|
'ns_print.c',
|
|
'ns_samedomain.c',
|
|
'ns_sign.c',
|
|
'ns_ttl.c',
|
|
'ns_verify.c',
|
|
'res_comp.c',
|
|
'res_data.c',
|
|
'res_debug.c',
|
|
'res_findzonecut.c',
|
|
'res_init.c',
|
|
'res_mkquery.c',
|
|
'res_mkupdate.c',
|
|
'res_query.c',
|
|
'res_send.c',
|
|
'res_sendsigned.c',
|
|
'res_update.c',
|
|
],
|
|
soversion : '9'
|
|
)
|
|
install_headers(
|
|
'dns.h',
|
|
'dns_util.h',
|
|
'nameser.h',
|
|
'resolv.h',
|
|
)
|
|
install_man(
|
|
'resolver.3',
|
|
'resolver.5',
|
|
)
|