The patch titled Subject: scripts/kconfig/qconf.cc: fix a compiliation error when using make xconfig has been removed from the -mm tree. Its filename was scripts-kconfig-qconfcc-fix-a-compiliation-error-when-using-make-xconfig.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Tiana Rakotovao Andriamahefa <rkmahefa@xxxxxxxxx> Subject: scripts/kconfig/qconf.cc: 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 <rkmahefa@xxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/kconfig/qconf.cc | 1 + 1 file changed, 1 insertion(+) diff -puN scripts/kconfig/qconf.cc~scripts-kconfig-qconfcc-fix-a-compiliation-error-when-using-make-xconfig scripts/kconfig/qconf.cc --- a/scripts/kconfig/qconf.cc~scripts-kconfig-qconfcc-fix-a-compiliation-error-when-using-make-xconfig +++ a/scripts/kconfig/qconf.cc @@ -6,6 +6,7 @@ #include <qglobal.h> #if QT_VERSION < 0x040000 +#include <stddef.h> #include <qmainwindow.h> #include <qvbox.h> #include <qvaluelist.h> _ Patches currently in -mm which might be from rkmahefa@xxxxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html