From 05980e8a0ea9f741f183a7153e1e7ce6349c1960 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Thu, 27 Dec 2018 13:43:24 -0800 Subject: HAVE_SYS_SELECT_H: Remove test for this. No longer needed. Many places in the code include sys/select.h with no guard for a long time and no problem reports. So kill it off. --- SConstruct | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 9a1eb799..953ddbff 100644 --- a/SConstruct +++ b/SConstruct @@ -860,8 +860,16 @@ else: "RTCM V2 support disabled.") env["rtcm104v2"] = False - for hdr in ("sys/un", "sys/socket", "sys/select", "netdb", "netinet/in", - "netinet/ip", "arpa/inet", "syslog", "termios", "winsock2"): + for hdr in ("arpa/inet", + "netdb", + "netinet/in", + "netinet/ip", + "sys/socket", + "sys/un", + "syslog", + "termios", + "winsock2" + ): if config.CheckHeader(hdr + ".h"): confdefs.append("#define HAVE_%s_H 1\n" % hdr.replace("/", "_").upper()) -- cgit v1.2.1