From 25308fe88f83bed2f4554bdaf6cefa8e18100c3f Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Tue, 13 Aug 2019 17:27:37 +0200 Subject: [PATCH] meson: add stdint.h to checked headers Without this check we won't ever define HAVE_STDINT_H, which isn't used in pulse directly, but is needed by e.g. the speex headers to work correctly. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index c51ec24ec..7906b1dd0 100644 --- a/meson.build +++ b/meson.build @@ -189,6 +189,7 @@ check_headers = [ 'pwd.h', 'regex.h', 'sched.h', + 'stdint.h', 'sys/capability.h', 'sys/dl.h', 'sys/eventfd.h',