From nobody Wed Oct 8 22:31:06 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E899B29E112; Tue, 24 Jun 2025 15:09:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750777775; cv=none; b=gZI/TghHl1ltw4Jpf/kAzL9MLAmUr/vQkeO6vM3uJ++pgJm/qm7gqrmkzpkH1MFn+OChq4lWm8PCOhuN3T4QiV0I5agxtGwUFrx16yRcnK25oqb1Iyf7brEY4PXzB/T9BDrtHIN7oywcNaFkh/CC45bCoogREYjvSBkRBHv7khs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750777775; c=relaxed/simple; bh=FKQZCVhssxinxGFnIiXQ+JCv5IXUQMwaUCZ/SHC7gr4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=YAiPQ3rw++53Vn4IDCxvzxVDU22EjyRQFoIoyotlf52kl5eYs6IoUufBM70cvTqUpWgxnrGcnuz7epCAUt6gUisFDhNsY/3A/WyQwCV8lKjx3213/xBtKLikO9TNksLX0E2acxtwICLgMA/+1iTLEawn6mg7t3CPoeJRfX5vXfY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=HNOcHaty; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="HNOcHaty" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 42D44C4CEEE; Tue, 24 Jun 2025 15:09:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1750777773; bh=FKQZCVhssxinxGFnIiXQ+JCv5IXUQMwaUCZ/SHC7gr4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HNOcHatyjO/OqtnGd5KJGCedy2277uSRpj0NTQUehchAtnU7zjDKXW7G+81Sxz5hp dI25wQQIC4Ek4Pi0lmQxiJsX3/Krq8y1ApYeF+N3CG7Y7iesqySHm6WL4/EtUZUxEj 7eb4vTaBrVM7YckORT+9HB78NpFiUi1x6lB94U59A2AAwXVJA5WzSOzom/XwYuaPBY 8WNk2yTZ9PDo/fuS11f/R/G79l+AcRIRutvEebSeqvUH5vDRewaPoVKRCGLW+Jjz9d Cn7I2uTH62kFP3fZ2N8P+Zx76/T0bO4LShzSKzS2XBaKKDqtn25TzQMKOpnQE+VLvp CmWLg5+96SSjA== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 66/66] kconfig: gconf: show GTK version in About dialog Date: Wed, 25 Jun 2025 00:05:54 +0900 Message-ID: <20250624150645.1107002-67-masahiroy@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250624150645.1107002-1-masahiroy@kernel.org> References: <20250624150645.1107002-1-masahiroy@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Likewise xconfig, it is useful to display the GTK version in the About dialog. Signed-off-by: Masahiro Yamada Acked-by: Randy Dunlap Tested-by: Randy Dunlap --- scripts/kconfig/gconf.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 5b1b468e782d..7340407e4d6e 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -579,7 +579,11 @@ static void on_about1_activate(GtkMenuItem *menuitem, = gpointer user_data) dialog =3D gtk_message_dialog_new(GTK_WINDOW(main_wnd), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_INFO, - GTK_BUTTONS_CLOSE, "%s", about_text); + GTK_BUTTONS_CLOSE, "%s\nGTK version: %d.%d.%d", + about_text, + gtk_get_major_version(), + gtk_get_minor_version(), + gtk_get_micro_version()); gtk_dialog_run(GTK_DIALOG(dialog)); gtk_widget_destroy(dialog); } --=20 2.43.0