From: Tiana Rakotovao Andriamahefa Date: Thu, 24 Jan 2013 16:20:39 +0000 (+0000) Subject: kconfig: fix a compiliation error when using make xconfig X-Git-Tag: v3.9-rc1~49^2~4 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=aed9934bf182c049d966bd106ad7e2b43c46c718;p=~emulex%2Finfiniband.git kconfig: fix a compiliation error when using make xconfig When using make xconfig, the following compilation error appears : /usr/include/qt3/qvaluelist.h:427:13: error: ‘ptrdiff_t’ does not name a type Including stddef.h in scripts/kconfig/qconf.cc permits to avoid this error. Signed-off-by: Tiana Rakotovao Andriamahefa Signed-off-by: Michal Marek --- diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index df274febb3e..1500c38f0cc 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -6,6 +6,7 @@ #include #if QT_VERSION < 0x040000 +#include #include #include #include