From patchwork Mon Jun 6 18:58:31 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnaud Lacombe X-Patchwork-Id: 853352 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p56IxpGL006524 for ; Mon, 6 Jun 2011 18:59:51 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757616Ab1FFS64 (ORCPT ); Mon, 6 Jun 2011 14:58:56 -0400 Received: from mail-iy0-f174.google.com ([209.85.210.174]:34179 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756562Ab1FFS6y (ORCPT ); Mon, 6 Jun 2011 14:58:54 -0400 Received: by mail-iy0-f174.google.com with SMTP id 14so3338068iyb.19 for ; Mon, 06 Jun 2011 11:58:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=imeQTdWIcnaoFb5bSFRvs7AtkvW3/RaZY0nuwiOtqOc=; b=aOGUe0EvxX5U/I7BmB8+/cgK/szsBfSYgnY4CsTbCq0o2+ZTQgFxl2Y+8FdFv5mwjh 8bgzGygrfWxfFgJDSRnr9EhwBf6WkYJ+QCzQTVwFoMv2MSVOtfJnayK9grtpq6RaS4cC HyqFdFOt6goG3EqBOH8oXFDbetsX1HlTc6LsM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=ILBFGtG4HU25TmssCTkXO/3xpIRQx5La+/OBYlLUS36p0Tj8SNEPsvkpr7PK+LFzE7 p4nfxryvVg6XWqZUiI78s/UJUmy4wDk5vChE7hng2pPX68FdAQmLxBYcSex5uD3su0Qt vCfntHSXJxHFUtsU2OKIvsIKKWpjqazDMDdwc= Received: by 10.231.62.200 with SMTP id y8mr7736182ibh.89.1307386733645; Mon, 06 Jun 2011 11:58:53 -0700 (PDT) Received: from localhost.localdomain (76-10-146-236.dsl.teksavvy.com [76.10.146.236]) by mx.google.com with ESMTPS id v15sm1766700ibh.28.2011.06.06.11.58.52 (version=SSLv3 cipher=OTHER); Mon, 06 Jun 2011 11:58:53 -0700 (PDT) From: Arnaud Lacombe To: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Michal Marek , Arnaud Lacombe Subject: [PATCH 9/9] kconfig/gconf: silent missing prototype warnings Date: Mon, 6 Jun 2011 14:58:31 -0400 Message-Id: <1307386711-8866-10-git-send-email-lacombar@gmail.com> X-Mailer: git-send-email 1.7.3.4.574.g608b.dirty In-Reply-To: <1307386711-8866-1-git-send-email-lacombar@gmail.com> References: <1307386711-8866-1-git-send-email-lacombar@gmail.com> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 06 Jun 2011 18:59:52 +0000 (UTC) As the `gconf' frontend is un-maintained, go the easy way by silencing the "warning: no previous prototype for ''" warnings. Signed-off-by: Arnaud Lacombe --- scripts/kconfig/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 0460ac3..84abb2f 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -227,7 +227,8 @@ HOSTLOADLIBES_qconf = $(KC_QT_LIBS) HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0` -HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` +HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \ + -Wno-missing-prototypes HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))