From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Pirotte Newsgroups: gmane.lisp.guile.devel Subject: guile-gnome, devel: fix g_get_current_time should [temporarily] not being wrapped Date: Sat, 5 Jul 2014 02:40:32 -0300 Message-ID: <20140705024032.13bafdc8@capac> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/FNhdLCDgAebcOX7xBcMf68u" X-Trace: ger.gmane.org 1404538890 11099 80.91.229.3 (5 Jul 2014 05:41:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 5 Jul 2014 05:41:30 +0000 (UTC) To: guile-devel Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Jul 05 07:41:20 2014 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1X3Iiu-0008VH-AB for guile-devel@m.gmane.org; Sat, 05 Jul 2014 07:41:20 +0200 Original-Received: from localhost ([::1]:39200 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X3Iit-0007U0-SB for guile-devel@m.gmane.org; Sat, 05 Jul 2014 01:41:19 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57128) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X3Iil-0007My-4T for guile-devel@gnu.org; Sat, 05 Jul 2014 01:41:16 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X3Iif-0002zq-75 for guile-devel@gnu.org; Sat, 05 Jul 2014 01:41:11 -0400 Original-Received: from maximusconfessor.all2all.org ([79.99.200.102]:38185) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X3Iif-0002ym-0S for guile-devel@gnu.org; Sat, 05 Jul 2014 01:41:05 -0400 Original-Received: from localhost (unknown [192.168.0.2]) by maximusconfessor.all2all.org (Postfix) with ESMTP id B23DBA04C140 for ; Sat, 5 Jul 2014 07:40:42 +0200 (CEST) Original-Received: from maximusconfessor.all2all.org ([192.168.0.1]) by localhost (maximusconfessor.all2all.org [192.168.0.2]) (amavisd-new, port 10024) with ESMTP id uLx3cxLEQ-ro for ; Sat, 5 Jul 2014 07:20:57 +0200 (CEST) Original-Received: from capac (unknown [189.60.115.53]) by maximusconfessor.all2all.org (Postfix) with ESMTPSA id EBF32A04C14C for ; Sat, 5 Jul 2014 07:40:35 +0200 (CEST) X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.23; x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 79.99.200.102 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17290 Archived-At: --MP_/FNhdLCDgAebcOX7xBcMf68u Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, guile-gnome devel: fix g_get_current_time should [temporarily] not being wrapped Attached... Happy hacking, David --MP_/FNhdLCDgAebcOX7xBcMf68u Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0010-fix-g_get_current_time-should-temporarily-not-being-.patch >From c9ef3a83a1b0d6ce6fed0fe330749ec2f89b3620 Mon Sep 17 00:00:00 2001 From: David PIROTTE Date: Sat, 5 Jul 2014 02:38:09 -0300 Subject: [PATCH 10/10] fix g_get_current_time should [temporarily] not being wrapped * glib/gnome/overrides/glib.defs: g_get_current_time added to the ignore list. note that it was not wrapped in previous version either. this tiny patch does not introduce an api break, it merely gets rid of unnecessary warnings at compile time. --- glib/gnome/overrides/glib.defs | 1 + 1 file changed, 1 insertion(+) diff --git a/glib/gnome/overrides/glib.defs b/glib/gnome/overrides/glib.defs index 7bf1f21..dd24b26 100644 --- a/glib/gnome/overrides/glib.defs +++ b/glib/gnome/overrides/glib.defs @@ -522,6 +522,7 @@ "g_getenv" "g_get_charset" "g_get_current_dir" + "g_get_current_time" ;; GTimeVal* "g_get_filename_charsets" "g_get_language_names" "g_get_system_data_dirs" -- 2.0.0 --MP_/FNhdLCDgAebcOX7xBcMf68u--