-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmeson.build
105 lines (91 loc) · 4.21 KB
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# This file is part of nss-tls.
#
# Copyright (C) 2018, 2019, 2020 Dima Krasner
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
project('nss-tls', 'c', version: '1.9', license : ['LGPL2.1+'])
prefix = get_option('prefix')
sys_conf_dir = get_option('sysconfdir')
local_state_dir = get_option('localstatedir')
nss_tls_socket_name = 'nss-tlsd.sock'
nss_tls_conf_name = 'nss-tls.conf'
nss_tls_socket_dir = '@0@/run/nss-tls'.format(join_paths(prefix, local_state_dir))
nss_tls_socket_path = '@0@/@1@'.format(nss_tls_socket_dir, nss_tls_socket_name)
nss_tls_user = get_option('user')
nss_tls_group = get_option('group')
nss_tlsd_path = join_paths(get_option('prefix'),
get_option('sbindir'),
'nss-tlsd')
add_project_arguments(
'-DNSS_TLS_SOCKET_NAME="@0@"'.format(nss_tls_socket_name),
'-DNSS_TLS_CONF_NAME="@0@"'.format(nss_tls_conf_name),
'-DNSS_TLS_SOCKET_DIR="@0@"'.format(nss_tls_socket_dir),
'-DNSS_TLS_SOCKET_PATH="@0@"'.format(nss_tls_socket_path),
'-DNSS_TLS_TIMEOUT=@0@'.format(get_option('timeout')),
'-DNSS_TLS_USER="@0@"'.format(nss_tls_user),
'-DNSS_TLS_GROUP="@0@"'.format(nss_tls_group),
'-DNSS_TLS_SYSCONFDIR="@0@"'.format(join_paths(prefix, sys_conf_dir)),
language: 'c'
)
systemd = dependency('systemd', required: false)
if systemd.found()
add_project_arguments('-DNSS_TLS_SYSTEMD', language: 'c')
endif
if get_option('buildtype').startswith('debug')
add_project_arguments('-DNSS_TLS_DEBUG', language: 'c')
endif
nss_tlsd = executable('nss-tlsd',
'nss-tlsd.c',
dependencies: [
meson.get_compiler('c').find_library('resolv'),
dependency('glib-2.0', version: '>=2.44'),
dependency('gio-2.0'),
dependency('gio-unix-2.0'),
dependency('libsoup-2.4'),
],
install: true,
install_dir: get_option('sbindir'))
libnss_tls = shared_library('nss_tls',
'nss-tls.c',
version: '2',
dependencies: [dependency('threads')],
install: true)
tlslookup = executable('tlslookup',
'tlslookup.c',
link_with: libnss_tls,
install: true)
cfg = configuration_data()
cfg.set('nss_tlsd_path', nss_tlsd_path)
cfg.set('resolvers', get_option('resolvers'))
nss_tls_conf = configure_file(input: 'nss-tls.conf.in',
output: 'nss-tls.conf',
configuration: cfg)
install_data(nss_tls_conf, install_dir: sys_conf_dir)
if systemd.found()
nss_tlsd_service = configure_file(input: 'nss-tlsd.service.in',
output: 'nss-tlsd.service',
configuration: cfg)
systemd_unit_dir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
install_data(nss_tlsd_service, install_dir: systemd_unit_dir)
nss_tlsd_user_service = configure_file(input: 'nss-tlsd-user.service.in',
output: 'nss-tlsd-user.service',
configuration: cfg)
systemd_user_unit_dir = systemd.get_pkgconfig_variable('systemduserunitdir')
install_data(nss_tlsd_user_service,
install_dir: systemd_user_unit_dir,
rename: 'nss-tlsd.service')
endif
install_man('nss-tlsd.8')
install_man('tlslookup.1')