diff options
author | rh <rh@pkgsrc.org> | 2003-07-06 08:51:33 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2003-07-06 08:51:33 +0000 |
commit | 7bcb80ebad1a70d8129f11ccebd02a0847572b0a (patch) | |
tree | 970175088ea192880b028b81abaf63dac218f3fd /sysutils/gworkspace/patches | |
parent | e561dfe6b3ddab6c5721a6cf39536f7a4fef215f (diff) | |
download | pkgsrc-7bcb80ebad1a70d8129f11ccebd02a0847572b0a.tar.gz |
Update GWLib and gworkspace to 0.5.3. There are numerous changes,
including much improved viewers and inspectors, improved iconisation, and
many bug fixes.
While at it, replace home grown PLIST substitution with standard GNUstep
buildlink2.mk symbols.
Diffstat (limited to 'sysutils/gworkspace/patches')
-rw-r--r-- | sysutils/gworkspace/patches/patch-aa | 31 | ||||
-rw-r--r-- | sysutils/gworkspace/patches/patch-ab | 21 |
2 files changed, 52 insertions, 0 deletions
diff --git a/sysutils/gworkspace/patches/patch-aa b/sysutils/gworkspace/patches/patch-aa new file mode 100644 index 00000000000..0941012871f --- /dev/null +++ b/sysutils/gworkspace/patches/patch-aa @@ -0,0 +1,31 @@ +$NetBSD: patch-aa,v 1.1 2003/07/06 08:51:34 rh Exp $ + +--- Utilities/thumbnailer/main.m.orig 2003-06-30 23:40:26.000000000 +1000 ++++ Utilities/thumbnailer/main.m +@@ -677,18 +677,26 @@ int main(int argc, char** argv, char **e + exit(0); + } + ++#if GS_WITH_GC + CREATE_AUTORELEASE_POOL (pool); ++#endif + thumbnailer = [Thumbnailer new]; ++#if GS_WITH_GC + RELEASE (pool); ++#endif + + if (thumbnailer != nil) { ++#if GS_WITH_GC + CREATE_AUTORELEASE_POOL (pool); ++#endif + + [NSApplication sharedApplication]; + NSRegisterServicesProvider(thumbnailer, @"Thumbnailer"); + [[NSRunLoop currentRunLoop] run]; + ++#if GS_WITH_GC + RELEASE (pool); ++#endif + } + + exit(0); diff --git a/sysutils/gworkspace/patches/patch-ab b/sysutils/gworkspace/patches/patch-ab new file mode 100644 index 00000000000..a660e961e6f --- /dev/null +++ b/sysutils/gworkspace/patches/patch-ab @@ -0,0 +1,21 @@ +$NetBSD: patch-ab,v 1.1 2003/07/06 08:51:35 rh Exp $ + +--- GWorkspace/GWorkspace.m.orig 2003-07-01 19:38:26.000000000 +1000 ++++ GWorkspace/GWorkspace.m +@@ -92,6 +92,7 @@ static GWorkspace *gworkspace = nil; + BOOL confirm = !([defaults boolForKey: confirmString]); + NSRect scr = [[NSScreen mainScreen] visibleFrame]; + NSRect wrect = NSZeroRect; ++ NSRect wr; + FileOperation *op; + int i; + +@@ -105,7 +106,7 @@ static GWorkspace *gworkspace = nil; + + for (i = 0; i < [operations count]; i++) { + op = [operations objectAtIndex: i]; +- NSRect wr = [op winRect]; ++ wr = [op winRect]; + + if (NSEqualRects(wr, NSZeroRect) == NO) { + wrect = NSMakeRect(wr.origin.x + WSHIFT, |