Compare commits
3 Commits
aa8077b519
...
35d4531b8c
Author | SHA1 | Date |
---|---|---|
![]() |
35d4531b8c | |
![]() |
8e7ef6abb8 | |
![]() |
a51875ad35 |
3
NEWS
3
NEWS
|
@ -96,6 +96,9 @@ CHANGES WITH 258 in spe:
|
||||||
continue to work, update to xf86-input-evdev >= 2.11.0 and
|
continue to work, update to xf86-input-evdev >= 2.11.0 and
|
||||||
xf86-input-libinput >= 1.5.0 before updating to systemd >= 258.
|
xf86-input-libinput >= 1.5.0 before updating to systemd >= 258.
|
||||||
|
|
||||||
|
* The meson option 'integration-tests' has been deprecated, and will be
|
||||||
|
removed in a future release.
|
||||||
|
|
||||||
— <place>, <date>
|
— <place>, <date>
|
||||||
|
|
||||||
CHANGES WITH 257:
|
CHANGES WITH 257:
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
if conf.get('ENABLE_NSPAWN') != 1
|
|
||||||
subdir_done()
|
|
||||||
endif
|
|
||||||
|
|
||||||
libnspawn_core_sources = files(
|
libnspawn_core_sources = files(
|
||||||
'nspawn-bind-user.c',
|
'nspawn-bind-user.c',
|
||||||
'nspawn-cgroup.c',
|
'nspawn-cgroup.c',
|
||||||
|
@ -52,6 +48,7 @@ executables += [
|
||||||
executable_template + {
|
executable_template + {
|
||||||
'name' : 'systemd-nspawn',
|
'name' : 'systemd-nspawn',
|
||||||
'public' : true,
|
'public' : true,
|
||||||
|
'conditions' : ['ENABLE_NSPAWN'],
|
||||||
'sources' : files('nspawn.c'),
|
'sources' : files('nspawn.c'),
|
||||||
'link_with' : nspawn_libs,
|
'link_with' : nspawn_libs,
|
||||||
'dependencies' : [
|
'dependencies' : [
|
||||||
|
|
|
@ -60,7 +60,7 @@ sanitize_address_undefined = custom_target(
|
||||||
'fuzzers',
|
'fuzzers',
|
||||||
' '.join(fuzz_c_args + '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'),
|
' '.join(fuzz_c_args + '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'),
|
||||||
' '.join(fuzz_cpp_args + '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'),
|
' '.join(fuzz_cpp_args + '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'),
|
||||||
'-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined -Dnspawn=enabled --optimization=@0@ @1@ --auto-features=@2@'.format(
|
'-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@ --auto-features=@2@'.format(
|
||||||
get_option('optimization'),
|
get_option('optimization'),
|
||||||
get_option('werror') ? '--werror' : '',
|
get_option('werror') ? '--werror' : '',
|
||||||
sanitize_auto_features
|
sanitize_auto_features
|
||||||
|
|
Loading…
Reference in New Issue