From ca296c1c8b36a1c53693d65ef80903297782547a Mon Sep 17 00:00:00 2001 From: Raphael Kubo da Costa Date: Sat, 22 Jan 2011 16:03:29 -0200 Subject: [PATCH] Build fix: Explicitly include stdint.h before cfgparse.tab.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit cfgparse.tab.h uses uint32_t, which is defined in stdint.h. Should fix the build of 3.ε-bf2 on FreeBSD. Signed-off-by: Raphael Kubo da Costa --- src/cfgparse.l | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cfgparse.l b/src/cfgparse.l index 0c0cee70..2d319134 100644 --- a/src/cfgparse.l +++ b/src/cfgparse.l @@ -10,6 +10,7 @@ */ #include #include +#include /* Defines uint32_t, required by cfgparse.tab.h */ #include "cfgparse.tab.h" #include -- 2.39.5