forked from clearlinux/swupd-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
324 lines (291 loc) · 10.5 KB
/
configure.ac
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.66])
AC_INIT(swupd-client, 3.18.4, [email protected])
AM_PROG_AR
LT_INIT
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign -Wall -W subdir-objects])
AM_SILENT_RULES([yes])
AC_PROG_CC
AM_PROG_CC_C_O
AC_LANG(C)
AC_CONFIG_HEADERS([config.h])
# Library checks
PKG_CHECK_MODULES([bsdiff], [bsdiff])
PKG_CHECK_MODULES([lzma], [liblzma])
PKG_CHECK_MODULES([zlib], [zlib])
PKG_CHECK_MODULES([curl], [libcurl])
PKG_CHECK_MODULES([openssl], [libcrypto >= 1.0.1])
PKG_CHECK_MODULES([libarchive], [libarchive])
# Program checks
AC_CHECK_PROGS(TAR, tar)
# Enable/disable options
AC_ARG_ENABLE(
[bzip2],
[AS_HELP_STRING([--disable-bzip2], [Do not use bzip2 compression (uses bzip2 by default)])]
)
BZIP="yes"
AS_IF(
[test -n "$enable_bzip2" -a "$enable_bzip2" = "yes"],
[BZIP="$enable_bzip2"]
)
AS_IF(
[test "x$enable_bzip2" != "xno"],
[AC_DEFINE(SWUPD_WITH_BZIP2, 1, [Use bzip2 compression])
AC_CHECK_LIB([bz2], [BZ2_bzBuffToBuffCompress], [], [AC_MSG_ERROR([the libbz2 library is missing])])
BZIP="yes"],
[AC_DEFINE(SWUPD_WITHOUT_BZIP2, 1, [Do not use bzip2 compression])
BZIP="no"]
)
AC_ARG_ENABLE(
[signature-verification],
[AS_HELP_STRING([--enable-signature-verification], [Enable signature check (disabled by default)])],
[AC_DEFINE([SIGNATURES], 1, [Enable signature check as default])]
)
SIGVERIFICATION="no"
AS_IF(
[test -n "$enable_signature_verification" -a "$enable_signature_verification" = "yes"],
[SIGVERIFICATION="$enable_signature_verification"]
)
AC_ARG_ENABLE(
[tests],
[AS_HELP_STRING([--disable-tests], [Do not enable unit or functional test framework (enabled by default)])]
)
TESTS="yes"
AS_IF(
[test -n "$enable_tests" -a "$enable_tests" = "yes"],
[TESTS="$enable_tests"]
)
AS_IF(
[test "$enable_tests" != "no"],
[PKG_CHECK_MODULES([check], [check >= 0.9.12])
AC_PATH_PROG([have_python3], [python3])
AS_IF(
[test -z "${have_python3}"],
[AC_MSG_ERROR([Must have Python 3 installed to run functional tests])]
)
AC_PATH_PROG([have_bats], [bats])
AS_IF(
[test -z "${have_bats}"],
[AC_MSG_ERROR([Must have the Bash Automated Testing System (bats) installed to run functional tests])]
)
TESTS="yes"],
[TESTS="no"]
)
AM_CONDITIONAL([ENABLE_TESTS], [test "$enable_tests" != "no"])
have_coverage=no
AC_ARG_ENABLE(
[coverage],
[AS_HELP_STRING([--enable-coverage], [enable test coverage])]
)
AS_IF(
[test "$enable_coverage" = "yes"],
[AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
AS_IF(
[test "$lcov_found" = "no"],
[AC_MSG_ERROR([*** lcov support requested but the program was not found])],
[lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
AS_IF(
[test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10],
[AC_MSG_ERROR([*** lcov version is too old. 1.10 required])],
[have_coverage=yes
AC_DEFINE([COVERAGE], [1], [Coverage enabled])]
)]
)]
)
AM_CONDITIONAL([COVERAGE], [test "$have_coverage" = "yes"])
AC_ARG_ENABLE(
[bsdtar],
[AS_HELP_STRING([--enable-bsdtar], [Use alternative bsdtar command (uses tar by default)])]
)
AS_IF(
[test "x$enable_bsdtar" = "xyes"],
[AC_DEFINE(SWUPD_WITH_BSDTAR, 1, [Use bsdtar])]
)
dnl Enable extended attribute support
XATTR="yes"
AC_ARG_ENABLE(
[xattr],
[AS_HELP_STRING([--enable-xattr], [Use extended file attributes (unused by default)])]
)
AS_IF(
[test "x$enable_xattr" = "xyes"],
[AC_DEFINE(SWUPD_WITH_XATTRS, 1, [Use extended file attributes])],
[XATTR=no]
)
TARSELINUX="yes"
AC_ARG_ENABLE(
[tar-selinux],
[AS_HELP_STRING([--enable-tar-selinux], [give --selinux option to tar])]
)
AS_IF(
[test "x$enable_tar_selinux" = "xyes"],
[AC_DEFINE(SWUPD_TAR_SELINUX, 1, [give --selinux option to tar])
AS_IF(
[test "x$XATTR" = "xno"],
[echo "Must have --enable-xattr to have --enable-tar-selinux" >&2
AS_EXIT(1)]
)],
[TARSELINUX=no]
)
AC_ARG_ENABLE(
[stateless],
[AS_HELP_STRING([--disable-stateless], [OS is not stateless, do not ignore configuration files (stateless by default)])]
)
AS_IF(
[test "x$enable_stateless" = "xno"],
[AC_DEFINE(OS_IS_STATELESS, 0, [OS is not stateless])],
[AC_DEFINE(OS_IS_STATELESS, 1, [OS is stateless])]
)
# With/without options
AC_ARG_WITH(
[certpath],
[AS_HELP_STRING([--with-certpath=PATH], [Location of update certificate])]
)
default_cert_path="/usr/share/clear/update-ca/Swupd_Root.pem"
cert_path=
# Makes sure --with-certpath receives an argument that is not "yes" or "no",
# and uses the default path if only --enable-signature-verification is passed.
AS_IF(
[test "$enable_signature_verification" = "yes" && test "$with_certpath" = "no"],
[AC_MSG_ERROR(['--with-certpath=no' or '--without-certpath' not supported. Specify a PATH.])],
[test "$enable_signature_verification" = "yes" && test "$with_certpath" = "yes"],
[AC_MSG_ERROR(['--with-certpath=yes' or '--with-certpath' not supported. Specify a PATH.])],
[test "$enable_signature_verification" != "yes" && test -n "$with_certpath"],
[AC_MSG_WARN([--with-certpath=PATH requires --enable-signature-verification])],
[test "$enable_signature_verification" = "yes" && test -n "$with_certpath"],
[cert_path="$with_certpath"],
[test "$enable_signature_verification" = "yes"],
[cert_path="$default_cert_path"]
)
AC_ARG_WITH(
[fallback-capaths],
[AS_HELP_STRING([--with-fallback-capaths=PATHS], [List of fallback CApaths to use for trust])]
)
AS_IF(
[test "x$with_fallback_capaths" = "xno"],
[],
[test "x$with_fallback_capaths" = "xyes"],
[AC_MSG_ERROR("--with-fallback-capaths requires a value")],
[AC_DEFINE_UNQUOTED([FALLBACK_CAPATHS], ["$with_fallback_capaths"], [List of fallback CApaths to use for trust])]
)
AC_ARG_WITH(
[contenturl],
[AS_HELP_STRING([--with-contenturl=URL], [Default content url])],
[AC_DEFINE_UNQUOTED([CONTENTURL], ["$withval"], [Default content url])]
)
AS_IF(
[test -n "$with_contenturl" -a "$with_contenturl" != "no" -a "$with_contenturl" != "yes"],
[CONTENTURL="$with_contenturl"],
[test "$with_contenturl" = "no"],
[CONTENTURL='!! Warning !! --with-contenturl not specified!'],
[test "$with_contenturl" = "yes"],
[CONTENTURL='!! Warning !! --with-contenturl not specified!'],
[CONTENTURL='!! Warning !! --with-contenturl not specified!']
)
AC_ARG_WITH(
[versionurl],
[AS_HELP_STRING([--with-versionurl=URL], [Default version url])],
[AC_DEFINE_UNQUOTED([VERSIONURL], ["$withval"], [Default version url])]
)
AS_IF(
[test -n "$with_versionurl" -a "$with_versionurl" != "no" -a "$with_versionurl" != "yes"],
[VERSIONURL="$with_versionurl"],
[test "$with_versionurl" = "no"],
[VERSIONURL='!! Warning !! --with-versionurl not specified!'],
[test "$with_versionurl" = "yes"],
[VERSIONURL='!! Warning !! --with-versionurl not specified!'],
[VERSIONURL='!! Warning !! --with-versionurl not specified!']
)
AC_ARG_WITH(
[formatid],
[AS_HELP_STRING([--with-formatid=NUM], [Default format identifier])],
[AC_DEFINE_UNQUOTED([FORMATID], ["$withval"], [Default format identifier])]
)
AS_IF(
[test -n "$with_formatid" -a "$with_formatid" != "no" -a "$with_formatid" != "yes"],
[FORMATID="$with_formatid"],
[test "$with_formatid" = "no"],
[FORMATID='!! Warning !! --with-formatid not specified!'],
[test "$with_formatid" = "yes"],
[FORMATID='!! Warning !! --with-formatid not specified!'],
[FORMATID='!! Warning !! --with-formatid not specified!']
)
AS_IF(
[test -n "$with_formatid"],
[echo "$with_formatid" | grep -q -E '^([[1-9]][[0-9]]*|staging)$' || \
AC_MSG_ERROR(['--with-formatid' has an invalid value ($with_formatid). Supported values are positive integers or "staging".])]
)
AC_ARG_WITH(
[systemdsystemunitdir],
[AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [path to systemd system service dir @<:@default=/usr/lib/systemd/system@:>@])],
[unitpath=${withval}],
[unitpath="$($PKG_CONFIG --variable=systemdsystemunitdir systemd)"]
)
AS_IF(
[test -z "${unitpath}"],
[unitpath=/usr/lib/systemd/system]
)
AC_SUBST(SYSTEMD_UNITDIR, [${unitpath}])
AC_DEFINE_UNQUOTED([SYSTEMD_UNITDIR_VAR], ["${unitpath}"], [systemdsystemunitdir])
AC_ARG_WITH(
[pre-update],
[AS_HELP_STRING([--with-pre-update=EXE], [Path to the pre-update executable])],
[AC_DEFINE_UNQUOTED([PRE_UPDATE], ["$withval"], [pre-update])],
[AC_DEFINE([PRE_UPDATE], [""], [pre-update])],
)
AC_ARG_WITH(
[post-update],
[AS_HELP_STRING([--with-post-update=EXE], [Path to the post-update executable])],
[AC_DEFINE_UNQUOTED([POST_UPDATE], ["$withval"], [post-update])],
[AC_DEFINE([POST_UPDATE], [""], [post-update])],
)
# Build variants
# default to Linux rootfs build
enable_linux_rootfs_build="yes"
# document all options for build variants
## (1) build variants
AH_TEMPLATE([SWUPD_LINUX_ROOTFS], [Enable Linux rootfs build variant])
## (2) variant features
AH_TEMPLATE([SWUPD_WITH_BINDMNTS], [cope with bind mounts over rootfs])
## (3) variant extra options
AH_TEMPLATE([MOUNT_POINT], [The mount point])
AH_TEMPLATE([STATE_DIR], [The state directory for swupd content])
AH_TEMPLATE([LOG_DIR], [Directory for swupd log files])
AH_TEMPLATE([LOCK_DIR], [Directory for lock file])
AH_TEMPLATE([BUNDLES_DIR], [Directory to use for bundles])
AH_TEMPLATE([CERT_PATH], [Location of update certificate])
AH_TEMPLATE([MOTD_FILE], [motd file path])
AS_IF(
[test "$enable_linux_rootfs_build" = "yes"],
[AC_DEFINE([SWUPD_LINUX_ROOTFS], 1)
AC_DEFINE([MOUNT_POINT], ["/"])
AC_DEFINE([STATE_DIR], ["/var/lib/swupd"])
AC_DEFINE([LOG_DIR], ["/var/log/swupd"])
AC_DEFINE([LOCK_DIR], ["/run/lock"])
AC_DEFINE([BUNDLES_DIR], ["/usr/share/clear/bundles"])
AC_DEFINE_UNQUOTED([CERT_PATH], ["$cert_path"])
AC_DEFINE([MOTD_FILE], ["/usr/lib/motd.d/001-new-release"])],
[AC_MSG_ERROR([Unknown build variant])]
)
AC_SUBST([cert_path], ["$cert_path"])
AC_CONFIG_FILES([Makefile data/check-update.service data/swupd-update.service])
AC_REQUIRE_AUX_FILE([tap-driver.sh])
AC_OUTPUT
AC_MSG_NOTICE([
------------
swupd-client
------------
Configuration to build swupd-client:
Content URL: ${CONTENTURL}
Version URL: ${VERSIONURL}
Format Identifier: ${FORMATID}
Signature verification: ${SIGVERIFICATION}
Update certificate path: ${cert_path}
Use bzip compression: ${BZIP}
Run Tests: ${TESTS}
Use extended file attributes ${XATTR}
Use --selinux option for tar ${TARSELINUX}
])