Add some missing "#include"s.
authorBen Pfaff <blp@nicira.com>
Wed, 26 May 2010 17:37:39 +0000 (10:37 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 26 May 2010 22:27:01 +0000 (15:27 -0700)
These are required to build on FreeBSD 8.0.

lib/daemon.c
lib/odp-util.h
lib/socket-util.c
lib/stream-fd.c
lib/stream-tcp.c
lib/stream-unix.c
ofproto/collectors.c
ovsdb/log.c

index 78f88a0f9bb4f0bab5d9a745a7570a28b9a1065d..59628f23335d85368b29527b495cc761253ae44b 100644 (file)
 #include "daemon.h"
 #include <errno.h>
 #include <fcntl.h>
+#include <signal.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sys/resource.h>
 #include <sys/wait.h>
 #include <unistd.h>
 #include "command-line.h"
index 6d67ec2cfe1f9b2660ef64f89c0936c8addd974c..dc9a43db215f66778e44d4eeeedb3d7d08aa0bf8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009 Nicira Networks.
+ * Copyright (c) 2009, 2010 Nicira Networks.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,6 +18,7 @@
 #define ODP_UTIL_H 1
 
 #include <stdbool.h>
+#include <stddef.h>
 #include <stdint.h>
 #include "openflow/openflow.h"
 #include "openvswitch/datapath-protocol.h"
index 4965b63af4d1cce7e5b62e38579efe26834fb68f..3af74a48d9dd5ce400b7ccb2fa730780474093e5 100644 (file)
@@ -26,6 +26,8 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sys/resource.h>
+#include <sys/socket.h>
+#include <sys/stat.h>
 #include <sys/un.h>
 #include <unistd.h>
 #include "fatal-signal.h"
index 94c84340966e67994af4c7b831395fb870483aba..cc897b3d9f56186e31da32212eac3c85a9aa8fdd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2008, 2009 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010 Nicira Networks.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,6 +21,7 @@
 #include <poll.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sys/socket.h>
 #include <sys/types.h>
 #include <unistd.h>
 #include "fatal-signal.h"
index a9bcaeb475ce2f91829d466a3537921969021c96..2f7e798a615502fb2467098ac5434246f23bb839 100644 (file)
@@ -23,6 +23,7 @@
 #include <netinet/tcp.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sys/socket.h>
 #include <unistd.h>
 #include "packets.h"
 #include "socket-util.h"
index 33f566b371edaa4f6e2e4187b50d6a3850713ed8..930f548680c0cb00079e4d8925727c998e9cc730 100644 (file)
@@ -21,6 +21,7 @@
 #include <inttypes.h>
 #include <netdb.h>
 #include <poll.h>
+#include <sys/socket.h>
 #include <sys/types.h>
 #include <sys/un.h>
 #include <stdlib.h>
index f0639836ef0d7a898f87581904178575c27064d6..0b84c3ece300a44fd62d9e4f6f4e255e99a111a8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2008, 2009 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010 Nicira Networks.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
 
 #include <errno.h>
 #include <stdlib.h>
+#include <sys/socket.h>
 #include <unistd.h>
 
 #include "socket-util.h"
index ccb844fdb54a3453f5035ed3bb9bceca1b0a5de3..09b9f1f7adc809c2eb6dcb1fcac13bed428f7568 100644 (file)
@@ -22,6 +22,7 @@
 #include <fcntl.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sys/stat.h>
 #include <unistd.h>
 
 #include "json.h"