Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Jun 2013 14:33:05 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r321685 - in head/astro/foxtrotgps: . files
Message-ID:  <201306241433.r5OEX59A016536@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Mon Jun 24 14:33:05 2013
New Revision: 321685
URL: http://svnweb.freebsd.org/changeset/ports/321685

Log:
  astro/foxtrotgps: fix run crash
  
  - Fix crash, retrieved from upstream
  
  PR:		ports/179919
  Submitted by:	Craig Whipp <crwhipp@gmail.com> (maintainer)

Added:
  head/astro/foxtrotgps/files/
  head/astro/foxtrotgps/files/patch-src-main   (contents, props changed)
Modified:
  head/astro/foxtrotgps/Makefile

Modified: head/astro/foxtrotgps/Makefile
==============================================================================
--- head/astro/foxtrotgps/Makefile	Mon Jun 24 14:32:11 2013	(r321684)
+++ head/astro/foxtrotgps/Makefile	Mon Jun 24 14:33:05 2013	(r321685)
@@ -3,7 +3,7 @@
 
 PORTNAME=	foxtrotgps
 PORTVERSION=	1.1.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	astro geography
 MASTER_SITES=	http://www.foxtrotgps.org/releases/
 

Added: head/astro/foxtrotgps/files/patch-src-main
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/astro/foxtrotgps/files/patch-src-main	Mon Jun 24 14:33:05 2013	(r321685)
@@ -0,0 +1,21 @@
+=== modified file 'src/main.c'
+--- src/main.c	2013-01-06 01:48:33 +0000
++++ src/main.c	2013-06-12 04:48:57 +0000
+@@ -77,7 +77,7 @@
+ 	if (!g_thread_supported ())
+ 		g_thread_init (NULL);
+ 	gdk_threads_init ();
+-
++	gdk_threads_enter ();
+ 	gtk_init (&argc, &argv);
+ 
+ 	setlocale (LC_NUMERIC, "C");
+@@ -203,7 +203,7 @@
+ 	
+ 	gtk_main ();
+ 
+-
++	gdk_threads_leave ();
+ 	
+ 	return 0;
+ }



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