svn commit: r321685 - in head/astro/foxtrotgps: . files

William Grzybowski wg at FreeBSD.org
Mon Jun 24 14:33:06 UTC 2013


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 at 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;
+ }


More information about the svn-ports-head mailing list