Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aed9934b authored by Tiana Rakotovao Andriamahefa's avatar Tiana Rakotovao Andriamahefa Committed by Michal Marek
Browse files

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: default avatarTiana Rakotovao Andriamahefa <rkmahefa@gmail.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent c5ffa130
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -6,6 +6,7 @@
#include <qglobal.h>
#include <qglobal.h>


#if QT_VERSION < 0x040000
#if QT_VERSION < 0x040000
#include <stddef.h>
#include <qmainwindow.h>
#include <qmainwindow.h>
#include <qvbox.h>
#include <qvbox.h>
#include <qvaluelist.h>
#include <qvaluelist.h>