From: Torsten Hilbrich Date: Mon, 7 Nov 2022 07:38:58 +0000 (+0100) Subject: test: compile test-utmp.c only if UTMP is enabled X-Git-Tag: v253-rc1~587 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41cac2a8b98fc5faebe942c697b17e109822342d;p=thirdparty%2Fsystemd.git test: compile test-utmp.c only if UTMP is enabled When compiling with -D utmp=false the compilation fails with: ../../git/systemd/src/test/test-utmp.c: In function ‘test_dump_run_utmp’: ../../git/systemd/src/test/test-utmp.c:21:9: error: cleanup argument not a function 21 | _unused_ _cleanup_(utxent_cleanup) bool utmpx = false; | ^~~~~~~~ ../../git/systemd/src/test/test-utmp.c:23:17: error: implicit declaration of function ‘utxent_start’ [-Werror=implicit-function-declaration] 23 | utmpx = utxent_start(); | ^~~~~~~~~~~~ any many other errors Add a conditional to compile test-utmp.c only if ENABLE_UTMP is true. --- diff --git a/src/test/meson.build b/src/test/meson.build index 86fc1d4fc0a..2a4dfe26dbe 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -622,7 +622,8 @@ tests += [ [files('test-journal-importer.c')], - [files('test-utmp.c')], + [files('test-utmp.c'), + [], [], [], 'ENABLE_UTMP'], [files('test-udev.c'), [libudevd_core,