Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Feb 2019 18:56:35 +0000 (UTC)
From:      Ashish SHUKLA <ashish@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493725 - in head/devel/glib20: . files
Message-ID:  <201902231856.x1NIuZ9A012729@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ashish
Date: Sat Feb 23 18:56:35 2019
New Revision: 493725
URL: https://svnweb.freebsd.org/changeset/ports/493725

Log:
  - Add fix for the GNOME glib upstream bug report 1697 which is breaking
    net-im/gajim when starting up
  
  PR:		235965
  Approved by:	kwm (IRC)

Added:
  head/devel/glib20/files/patch-gio_gthreadedresolver.c   (contents, props changed)
Modified:
  head/devel/glib20/Makefile

Modified: head/devel/glib20/Makefile
==============================================================================
--- head/devel/glib20/Makefile	Sat Feb 23 18:52:42 2019	(r493724)
+++ head/devel/glib20/Makefile	Sat Feb 23 18:56:35 2019	(r493725)
@@ -3,7 +3,7 @@
 
 PORTNAME=	glib
 PORTVERSION=	2.56.3
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	1
 CATEGORIES=	devel
 MASTER_SITES=	GNOME

Added: head/devel/glib20/files/patch-gio_gthreadedresolver.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/glib20/files/patch-gio_gthreadedresolver.c	Sat Feb 23 18:56:35 2019	(r493725)
@@ -0,0 +1,12 @@
+Upstream bug: https://gitlab.gnome.org/GNOME/glib/issues/1697
+
+--- gio/gthreadedresolver.c.orig
++++ gio/gthreadedresolver.c
+@@ -836,6 +836,7 @@
+    * worker thread. (Although the workers would get reused by the
+    * #GThreadPool.) */
+   struct __res_state res;
++  memset( &res, 0, sizeof( res ));
+   if (res_ninit (&res) != 0)
+     {
+       g_task_return_new_error (task, G_RESOLVER_ERROR, G_RESOLVER_ERROR_INTERNAL,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902231856.x1NIuZ9A012729>