blob: 944d2f9165f77d43f14a9e26652997407cb81698 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From ff0718174faf1167fb4765ebe4bd280bbe8d2ac6 Mon Sep 17 00:00:00 2001
Brad Bishope42b3e32020-01-15 22:08:42 -05002From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
3Date: Sun, 8 Dec 2019 23:42:00 +0100
4Subject: [PATCH] musl: Hack to fix configure
Brad Bishope42b3e32020-01-15 22:08:42 -05005
Patrick Williams8e7b46e2023-05-01 14:19:06 -05006Upstream-Status: Inappropriate [Musl Specific]
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishope42b3e32020-01-15 22:08:42 -05008---
Patrick Williamsde0582f2022-04-08 10:23:27 -05009 meson.build | 11 ++++++++---
10 1 file changed, 8 insertions(+), 3 deletions(-)
Brad Bishope42b3e32020-01-15 22:08:42 -050011
12diff --git a/meson.build b/meson.build
Patrick Williamsde0582f2022-04-08 10:23:27 -050013index 075776f..dfd7421 100644
Brad Bishope42b3e32020-01-15 22:08:42 -050014--- a/meson.build
15+++ b/meson.build
Patrick Williamsde0582f2022-04-08 10:23:27 -050016@@ -101,9 +101,14 @@ elif cc.has_header_symbol('paths.h', '_PATH_WTMPX')
17
Brad Bishope42b3e32020-01-15 22:08:42 -050018 config_h.set('PATH_WTMP', '_PATH_WTMPX')
19 else
Patrick Williamsde0582f2022-04-08 10:23:27 -050020- path_wtmp = '/var/log/utx.log'
21- assert(run_command('test', '-e', path_wtmp).returncode() == 0, 'Do not know which filename to watch for wtmp changes')
22- config_h.set_quoted('PATH_WTMP', path_wtmp)
Brad Bishope42b3e32020-01-15 22:08:42 -050023+ # musl: This is just a build fix hack.
24+ # As usual they know better, consider all other projects crap and offer zero
25+ # alternatives: So wtmp is a dead stub only [1] (= /dev/null/wtmp - taken
26+ # from musl sources).
27+ # Maybe a hero comes along and adds utmps [2] to make accountsservice useful for musl
28+ # [1] https://wiki.musl-libc.org/faq.html#Q:-Why-is-the-utmp/wtmp-functionality-only-implemented-as-stubs?
29+ # [2] https://github.com/skarnet/utmps
30+ config_h.set_quoted('PATH_WTMP', '/dev/null/wtmp')
31 endif
32
33 # compiler flags
Patrick Williamsde0582f2022-04-08 10:23:27 -050034--
352.34.1
36