commit | 96555a96d724016e13190b28cffa3bc929ac60dc | [log] [tgz] |
---|---|---|
author | Blue Swirl <blauwirbel@gmail.com> | Fri Jul 17 11:01:45 2009 +0000 |
committer | Blue Swirl <blauwirbel@gmail.com> | Fri Jul 17 11:01:45 2009 +0000 |
tree | cdc3b50f1907d72303e9073bbe0ed38af63605b9 | |
parent | 2d69f3590d533ee029fb9739a2bd5339dde22bcb [diff] [blame] |
Fix OpenBSD build The header sys-queue.h must be #included early, otherwise at some point OS queue macros will be used. On OpenBSD, those don't define TAILQ_FOREACH_SAFE. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
diff --git a/vl.c b/vl.c index f475693..ce213c2 100644 --- a/vl.c +++ b/vl.c
@@ -31,6 +31,8 @@ /* Needed early for HOST_BSD etc. */ #include "config-host.h" +/* Needed early to override system queue definitions on BSD */ +#include "sys-queue.h" #ifndef _WIN32 #include <libgen.h>