From 6ca00f6f1789a510bc4dbb73386a8dae197531df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Edward=20Tomasz=20Napiera=C5=82a?= Date: Tue, 1 Nov 2011 13:25:49 +0100 Subject: [PATCH] Fix build on FreeBSD. Patch below fixes build on FreeBSD; tested on 10.0-CURRENT. Signed-off-by: Edward Tomasz Napierala Signed-off-by: Ben Pfaff --- configure.ac | 1 + lib/meta-flow.h | 2 ++ lib/odp-util.c | 1 + lib/ofp-util.c | 2 ++ lib/packets.c | 1 + ofproto/in-band.h | 1 + vswitchd/system-stats.c | 4 ++++ 7 files changed, 12 insertions(+) diff --git a/configure.ac b/configure.ac index 3b87e7e0c..7bac8712f 100644 --- a/configure.ac +++ b/configure.ac @@ -41,6 +41,7 @@ AC_SYS_LARGEFILE AC_SEARCH_LIBS([pow], [m]) AC_SEARCH_LIBS([clock_gettime], [rt]) +AC_SEARCH_LIBS([timer_create], [rt]) OVS_CHECK_COVERAGE OVS_CHECK_NDEBUG diff --git a/lib/meta-flow.h b/lib/meta-flow.h index 696b8ca67..1242f9ff3 100644 --- a/lib/meta-flow.h +++ b/lib/meta-flow.h @@ -17,6 +17,8 @@ #ifndef META_FLOW_H #define META_FLOW_H 1 +#include +#include #include #include "flow.h" #include "packets.h" diff --git a/lib/odp-util.c b/lib/odp-util.c index 33672c8c4..1e20f49db 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c @@ -19,6 +19,7 @@ #include "odp-util.h" #include #include +#include #include #include #include diff --git a/lib/ofp-util.c b/lib/ofp-util.c index bf03a820e..b1d35cbb8 100644 --- a/lib/ofp-util.c +++ b/lib/ofp-util.c @@ -18,6 +18,8 @@ #include "ofp-print.h" #include #include +#include +#include #include #include #include "autopath.h" diff --git a/lib/packets.c b/lib/packets.c index 815d4e66b..b704276ca 100644 --- a/lib/packets.c +++ b/lib/packets.c @@ -18,6 +18,7 @@ #include "packets.h" #include #include +#include #include #include #include "byte-order.h" diff --git a/ofproto/in-band.h b/ofproto/in-band.h index f7f2ec656..9de72ee64 100644 --- a/ofproto/in-band.h +++ b/ofproto/in-band.h @@ -20,6 +20,7 @@ #include #include #include +#include struct flow; struct in_band; diff --git a/vswitchd/system-stats.c b/vswitchd/system-stats.c index b8f8d7e33..a3b4db443 100644 --- a/vswitchd/system-stats.c +++ b/vswitchd/system-stats.c @@ -95,7 +95,11 @@ get_memory_stats(struct shash *stats) if (!LINUX) { unsigned int pagesize = get_page_size(); long int phys_pages = sysconf(_SC_PHYS_PAGES); +#ifdef _SC_AVPHYS_PAGES long int avphys_pages = sysconf(_SC_AVPHYS_PAGES); +#else + long int avphys_pages = 0; +#endif int mem_total, mem_used; if (pagesize <= 0 || phys_pages <= 0 || avphys_pages <= 0) { -- 2.39.2