-
Notifications
You must be signed in to change notification settings - Fork 3
/
meson.build
250 lines (217 loc) · 7.81 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
project('libESMTP', 'c', version : '1.1.0', default_options: ['c_std=c11'])
email = 'Brian Stafford <[email protected]>'
website = 'https://libesmtp.github.io/'
pkg = import('pkgconfig')
cc = meson.get_compiler('c')
libesmtp_version = meson.project_version()
# As a reference point, v1.0.6, the last widely released version, had the
# libtool style current:revision:age = 7:6:1 where:
# current = API version
# revision = bug fix
# age = number of backward compatible APIs
# This version introduces APIs but does not change existing APIs, therefore
# increase current and age and reset revision to zero.
libesmtp_cra = '8:0:2'
# The .so version number is calculated as C:R:A => .(C-A).A.R
cra = []
foreach str : libesmtp_cra.split(':')
cra += str.to_int()
endforeach
libesmtp_so_version = '@0@.@1@.@2@'.format(cra[0]-cra[2], cra[2], cra[1])
auth_plugin_dir = get_option('libdir') / 'esmtp-plugins-' + libesmtp_so_version
################################################################################
# legacy defines
################################################################################
cflags = [
'-D_POSIX_C_SOURCE=200809L',
]
cflags_warnings = [
'-Walloc-zero',
'-Wbad-function-cast',
'-Wcast-align',
'-Wcast-qual',
'-Wchar-subscripts',
'-Wdeclaration-after-statement',
'-Wduplicated-branches',
'-Wmissing-prototypes',
'-Wnested-externs',
'-Wpacked',
'-Wpointer-arith',
'-Wredundant-decls',
'-Wshadow',
'-Wstrict-prototypes',
'-Wwrite-strings',
]
if get_option('warning_level').to_int() >= 2
cflags += cflags_warnings
endif
if get_option('warning_level').to_int() >= 3
cflags += ['-Werror']
endif
add_project_arguments(cc.get_supported_arguments(cflags), language: 'c')
################################################################################
# dependencies
################################################################################
dldep = cc.find_library('dl')
ssldep = dependency('openssl', version : '>=1.1.0', required : get_option('tls'))
threaddep = dependency('threads', required : get_option('pthreads'))
#XXX add test for libbind9.so
lwresdep = cc.find_library('lwres', required : get_option('lwres'))
deps = [
dldep,
ssldep,
threaddep,
lwresdep,
]
################################################################################
# Function availability
################################################################################
# Solaris 8 strlcpy() return value does not correspond with BSD version
# libESMTP does not use the return value so this should be sufficient
have_strlcpy = cc.has_function('strlcpy')
have_strdup = cc.has_function('strdup')
have_strncasecmp = cc.has_function('strncasecmp')
have_strcasecmp = cc.has_function('strcasecmp')
have_memrchr = cc.has_header_symbol('string.h', 'memrchr')
################################################################################
# configuration
# XXX WARNING use of #if SYMBOL vs #ifdef SYMBOL somewhat haphazard
################################################################################
conf = configuration_data()
conf.set('SIZEOF_UNSIGNED_INT', cc.sizeof('unsigned int'))
conf.set('SIZEOF_UNSIGNED_LONG', cc.sizeof('unsigned long'))
conf.set('SIZEOF_UNSIGNED_SHORT', cc.sizeof('unsigned short'))
conf.set('AUTH_ID_HACK', true)
conf.set('USE_CHUNKING', get_option('bdat'))
conf.set('USE_ETRN', get_option('etrn'))
conf.set('USE_PTHREADS', threaddep.found())
conf.set('USE_TLS', ssldep.found())
conf.set('USE_XDG_DIRS', get_option('xdg'))
conf.set('USE_XUSR', get_option('xusr'))
conf.set_quoted('AUTHPLUGINDIR', get_option('prefix') / auth_plugin_dir)
conf.set_quoted('LT_VERSION', libesmtp_cra)
conf.set_quoted('SO_VERSION', libesmtp_so_version)
conf.set_quoted('VERSION', libesmtp_version)
conf.set('HAVE_GETHOSTNAME', 1, description : 'POSIX.1-2001, POSIX.1-2008.')
conf.set('HAVE_GETTIMEOFDAY', true, description : 'POSIX.1-2001, obsolete POSIX.1-2008.')
conf.set('HAVE_LIBCRYPTO', ssldep.found().to_int())
conf.set('HAVE_LOCALTIME_R', 1, description : 'SUSV2')
conf.set('HAVE_LWRES_NETDB_H', lwresdep.found().to_int())
conf.set('HAVE_STRERROR_R', 1)
conf.set('HAVE_WORKING_STRERROR_R', 0)
conf.set('HAVE_STRUCT_TM_TM_ZONE', 0)
conf.set('HAVE_UNAME', 1)
conf.set('HAVE_STRFTIME', 1)
conf.set('LIBESMTP_ENABLE_DEPRECATED_SYMBOLS', true)
# endianness
conf.set('WORDS_BIGENDIAN', host_machine.endian() == 'big')
# missing.h
conf.set('HAVE_STRDUP', have_strdup)
conf.set('HAVE_STRNCASECMP', have_strncasecmp)
conf.set('HAVE_STRCASECMP', have_strcasecmp)
conf.set('HAVE_MEMRCHR', have_memrchr)
conf.set('HAVE_STRLCPY', have_strlcpy)
configure_file(output : 'config.h', configuration : conf)
################################################################################
# libesmtp.spec.in
################################################################################
spec = configuration_data()
spec.set('PACKAGE', meson.project_name())
spec.set('VERSION', libesmtp_version)
spec.set('BINDIR', get_option('bindir'))
spec.set('LIBDIR', get_option('libdir'))
spec.set('PLUGINDIR', auth_plugin_dir)
spec.set('URL', website)
spec.set('EMAIL', email)
if ssldep.found()
spec.set('RPM_REQUIRES', 'Requires:')
spec.set('RPM_BUILDREQUIRES', 'BuildRequires:')
spec.set('RPM_OPENSSL', 'openssl >= %{openssl}')
spec.set('RPM_OPENSSLDEVEL', 'openssl-devel >= %{openssl}')
endif
configure_file(input : 'libesmtp.spec.in',
output : 'libesmtp.spec',
configuration : spec)
################################################################################
# targets
################################################################################
sources = [
'api.h',
'auth-client.c',
'auth-client.h',
'auth-plugin.h',
'base64.c',
'base64.h',
'concatenate.c',
'concatenate.h',
'errors.c',
'headers.c',
'headers.h',
'htable.c',
'htable.h',
'libesmtp.h',
'libesmtp-private.h',
'message-callbacks.c',
'message-source.c',
'message-source.h',
'missing.c',
'missing.h',
'protocol.c',
'protocol.h',
'protocol-states.h',
'rfc2822date.c',
'rfc2822date.h',
'siobuf.c',
'siobuf.h',
'smtp-api.c',
'smtp-auth.c',
'smtp-bdat.c',
'smtp-etrn.c',
'smtp-tls.c',
'tlsutils.c',
'tlsutils.h',
'tokens.c',
'tokens.h'
]
if ssldep.found()
sources += [ 'tlsutils.h', 'tlsutils.c' ]
endif
mapfile = 'libesmtp.map'
vflag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), mapfile)
lib = library('esmtp', sources,
link_args : vflag, link_depends : mapfile,
soversion : libesmtp_so_version,
dependencies : deps,
install : true)
################################################################################
# SASL client modules
################################################################################
clients = []
include_dir = include_directories('.')
subdir('login')
subdir('plain')
subdir('crammd5')
if ssldep.found()
subdir('ntlm')
endif
################################################################################
# libESMTP example/demo program
################################################################################
subdir('examples')
################################################################################
# Misc installation
################################################################################
install_headers(['libesmtp.h', 'auth-client.h'])
pkg.generate(lib, filebase : 'libesmtp-1.0', description : 'SMTP client library')
summary({'current:revision:age': libesmtp_cra,
'so version': libesmtp_so_version,
'prefix': get_option('prefix'),
'libdir': get_option('libdir'),
'threads': threaddep.found(),
'lwres': lwresdep.found(),
'AUTH modules': get_option('prefix') / auth_plugin_dir,
'Legacy file layout': not get_option('xdg'),
'STARTTLS': ssldep.found(),
'CHUNKING': get_option('bdat'),
'ETRN': get_option('etrn'),
'XUSR': get_option('xusr')})