From patchwork Sun Jan 13 03:28:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Tiana Rakotovao Andriamahefa X-Patchwork-Id: 1969581 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 8428BDF215 for ; Sun, 13 Jan 2013 02:33:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754209Ab3AMCdJ (ORCPT ); Sat, 12 Jan 2013 21:33:09 -0500 Received: from mail-wi0-f170.google.com ([209.85.212.170]:34955 "EHLO mail-wi0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753970Ab3AMCdI (ORCPT ); Sat, 12 Jan 2013 21:33:08 -0500 Received: by mail-wi0-f170.google.com with SMTP id hq7so618352wib.1 for ; Sat, 12 Jan 2013 18:33:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:mime-version :content-type:content-transfer-encoding; bh=Su/ovGXB45BXny/W1MyL0tY4vbcidnHk0pOjYMEgizg=; b=etnGpk7f5ezukf5At27/n+XVRYKto2Ap77hZl1/4sP1mstQtF/92WfpfI8J3LWvd3p ktxzjEqzdtvJlgyfOOmoj1sM+xG374qJw1zov3E7TkcdKAPRmXHw+GkWQovcMrC4EC3p jmuFkFxDk4ZP1xKdxN5F71Y4fv+VTLCKcZMAwH/nszBcbZ4mCFrH6WH+77yqOmWPOrIF 3g+904f6i1K/8eeJ8MIRnyK3J2yWGiH7KXNCtAevlZQ9oaW7gWP2k/9TRk+kDEtnBapU qzjx3S6Oir6LrKeQoUgpo13dsrr/qI2IT7qJcu11mFE/3oXUgPjhRwYQNymW5P/ybA5i cdeg== X-Received: by 10.194.240.129 with SMTP id wa1mr35825223wjc.21.1358044386539; Sat, 12 Jan 2013 18:33:06 -0800 (PST) Received: from rak ([193.48.172.23]) by mx.google.com with ESMTPS id w5sm6314820wif.11.2013.01.12.18.33.04 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 12 Jan 2013 18:33:05 -0800 (PST) Received: by rak (Postfix, from userid 1000) id C3984EA244; Sun, 13 Jan 2013 03:31:17 +0000 (WET) From: Tiana Rakotovao Andriamahefa To: mmarek@suse.cz Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Tiana Rakotovao Andriamahefa Subject: [PATCH] scripts: kconfig: qconf.cc: fix a compiliation error when using make xconfig Date: Sun, 13 Jan 2013 03:28:40 +0000 Message-Id: <1358047720-10358-1-git-send-email-rkmahefa@gmail.com> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org 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 --- scripts/kconfig/qconf.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index df274fe..1500c38 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -6,6 +6,7 @@ #include #if QT_VERSION < 0x040000 +#include #include #include #include