summaryrefslogtreecommitdiff
path: root/src/mev.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2023-03-08 20:36:47 +0100
committerChristian Persch <chpe@src.gnome.org>2023-03-08 20:36:47 +0100
commit75543c3b30dbf696b084e927dabbf52a41d32638 (patch)
treef53a025d6bf341aecdc4d2dac3cd3fd45aee794c /src/mev.c
parentbd4f781d168859eb42943a23487422224124467c (diff)
downloadvte-75543c3b30dbf696b084e927dabbf52a41d32638.tar.gz
all: Use __has_include
... instead of checking for header presence from meson.build.
Diffstat (limited to 'src/mev.c')
-rw-r--r--src/mev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mev.c b/src/mev.c
index 2f81a640..74c4aca3 100644
--- a/src/mev.c
+++ b/src/mev.c
@@ -27,7 +27,7 @@
#include <glib.h>
#include "caps.hh"
-#ifdef HAVE_SYS_SELECT_H
+#if __has_include(<sys/select.h>)
#include <sys/select.h>
#endif