From: Raphael Kubo da Costa Date: Sat, 22 Jan 2011 18:03:29 +0000 (-0200) Subject: Build fix: Explicitly include stdint.h before cfgparse.tab.h X-Git-Tag: 4.0~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9223a39a65d93f2dd025451369c900297c4c4b0d;p=i3%2Fi3 Build fix: Explicitly include stdint.h before cfgparse.tab.h 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 --- 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