summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct12
1 files changed, 10 insertions, 2 deletions
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())