summaryrefslogtreecommitdiff
path: root/misc/openoffice2/patches
diff options
context:
space:
mode:
authorhira <hira>2007-06-14 14:31:12 +0000
committerhira <hira>2007-06-14 14:31:12 +0000
commit264b417c52a65d07a608b593af295228acbb9def (patch)
treeccdd1f8340a42c67159a9228db4aa1645a4dfd38 /misc/openoffice2/patches
parent8ccdd75d72e0ed79eaedd81b22fdd5295c7fcb9c (diff)
downloadpkgsrc-264b417c52a65d07a608b593af295228acbb9def.tar.gz
- Remove my bogus patches. It causes hang.
- Disable systray quickstarter. I can't fix it now. Bump PKGREVISION.
Diffstat (limited to 'misc/openoffice2/patches')
-rw-r--r--misc/openoffice2/patches/patch-ck44
-rw-r--r--misc/openoffice2/patches/patch-cl14
2 files changed, 0 insertions, 58 deletions
diff --git a/misc/openoffice2/patches/patch-ck b/misc/openoffice2/patches/patch-ck
deleted file mode 100644
index b21b6a768d9..00000000000
--- a/misc/openoffice2/patches/patch-ck
+++ /dev/null
@@ -1,44 +0,0 @@
-$NetBSD: patch-ck,v 1.2 2007/06/10 04:55:06 hira Exp $
-
---- vcl/unx/gtk/app/gtkinst.cxx.orig 2006-09-17 21:29:23.000000000 +0900
-+++ vcl/unx/gtk/app/gtkinst.cxx 2007-06-10 11:50:10.000000000 +0900
-@@ -221,6 +221,7 @@
-
- GtkYieldMutex::GtkYieldMutex()
- {
-+ mutex_locked = 0;
- }
-
- void GtkYieldMutex::acquire()
-@@ -237,7 +238,10 @@
- OMutex::release();
-
- // obtain gdk mutex
-- gdk_threads_enter();
-+ // gdk_threads_enter();
-+ /* XXX: With systray quickstarter, the mutex is already locking. */
-+ if( g_mutex_trylock( gdk_threads_mutex ) )
-+ mutex_locked = 1;
-
- // obtained gdk mutex, now lock count is one by definition
- OMutex::acquire();
-@@ -257,7 +261,10 @@
- mnCount--;
- if( mnCount == 0 )
- {
-- gdk_threads_leave();
-+ if (mutex_locked) {
-+ gdk_threads_leave();
-+ mutex_locked = 0;
-+ }
- mnThreadId = 0;
- }
- }
-@@ -292,6 +299,7 @@
-
- // obtained gdk mutex, now lock count is one by definition
- OMutex::acquire();
-+ mutex_locked = 1;
- mnCount = 1;
- mnThreadId = aCurrentThread;
- OMutex::release();
diff --git a/misc/openoffice2/patches/patch-cl b/misc/openoffice2/patches/patch-cl
deleted file mode 100644
index 876080c9a05..00000000000
--- a/misc/openoffice2/patches/patch-cl
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-cl,v 1.1 2007/04/22 23:15:25 hira Exp $
-
---- sfx2/source/appl/shutdownicon.cxx.orig 2007-04-23 06:14:32.000000000 +0900
-+++ sfx2/source/appl/shutdownicon.cxx 2007-04-23 06:15:48.000000000 +0900
-@@ -530,9 +530,7 @@
- }
- }
-
--#ifdef WNT
- LeaveModalMode();
--#endif
- return 0;
- }
-