From owner-svn-ports-all@FreeBSD.ORG Mon Jun 24 14:33:06 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2C5761B6; Mon, 24 Jun 2013 14:33:06 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1E6D41B0D; Mon, 24 Jun 2013 14:33:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5OEX6kP016539; Mon, 24 Jun 2013 14:33:06 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5OEX59A016536; Mon, 24 Jun 2013 14:33:05 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201306241433.r5OEX59A016536@svn.freebsd.org> From: William Grzybowski Date: Mon, 24 Jun 2013 14:33:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321685 - in head/astro/foxtrotgps: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 14:33:06 -0000 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 (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; + }