ports/181124: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Wed Aug 14 15:00:02 UTC 2013


The following reply was made to PR ports/181124; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: ports/181124: commit references a PR
Date: Wed, 14 Aug 2013 14:52:35 +0000 (UTC)

 Author: gnn (src,doc committer)
 Date: Wed Aug 14 14:52:22 2013
 New Revision: 324728
 URL: http://svnweb.freebsd.org/changeset/ports/324728
 
 Log:
   Fix for broken eclipse-devel after glib-2.36.3 update.
   Tested on HEAD, 9.1 and 8.4.
   
   PR: ports/181124
   Submitted by: Jonathan Chen jonc at chen.org.nz
 
 Modified:
   head/java/eclipse-devel/files/freebsd-support.patch
 
 Modified: head/java/eclipse-devel/files/freebsd-support.patch
 ==============================================================================
 --- head/java/eclipse-devel/files/freebsd-support.patch	Wed Aug 14 14:40:17 2013	(r324727)
 +++ head/java/eclipse-devel/files/freebsd-support.patch	Wed Aug 14 14:52:22 2013	(r324728)
 @@ -2827,6 +2827,40 @@ $FreeBSD$
   # GLX lib
   #
   make_glx: $(GLX_LIB)
 +--- build.orig/eclipse-3.5.2-src/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h.orig	2012-06-28 01:39:42.000000000 +1200
 ++++ build.orig/eclipse-3.5.2-src/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h	2013-08-08 09:17:59.133694911 +1200
 +@@ -38,6 +38,11 @@
 + 
 + #define OS_LOAD_FUNCTION LOAD_FUNCTION
 + 
 ++/*
 ++	g_thread_init() is non-existent in glib-2.36+
 ++ */
 ++#define NO__1g_1thread_1init
 ++
 + #ifndef GDK_WINDOWING_X11
 + 
 + /* X Structures */
 +--- build.orig/eclipse-3.5.2-src/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c.orig	2013-08-08 09:18:14.525694799 +1200
 ++++ build.orig/eclipse-3.5.2-src/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c	2013-08-08 09:19:42.847695428 +1200
 +@@ -4434,11 +4434,17 @@
 + JNIEXPORT jboolean JNICALL OS_NATIVE(_1g_1thread_1supported)
 + 	(JNIEnv *env, jclass that)
 + {
 ++	return 1;
 ++	/*
 ++		g_thread_supported is non-existent in glib-2.36+,
 ++		but is still referenced.
 ++
 + 	jboolean rc = 0;
 + 	OS_NATIVE_ENTER(env, that, _1g_1thread_1supported_FUNC);
 + 	rc = (jboolean)g_thread_supported();
 + 	OS_NATIVE_EXIT(env, that, _1g_1thread_1supported_FUNC);
 + 	return rc;
 ++	 */
 + }
 + #endif
 + 
  --- build.orig/eclipse-3.5.2-src/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java	2009-12-23 15:12:33.298742157 -0500
  +++ build/eclipse-3.5.2-src/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java	2009-12-23 15:14:12.577551971 -0500
  @@ -23,18 +23,19 @@
 _______________________________________________
 svn-ports-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe at freebsd.org"
 


More information about the freebsd-eclipse mailing list