[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Fallout from NSLog -> NSDebug{L,LL}og change...
From: |
Jeff Teunissen |
Subject: |
Re: Fallout from NSLog -> NSDebug{L,LL}og change... |
Date: |
Sat, 03 Mar 2001 21:51:50 -0500 |
Jeff Teunissen wrote:
>
> Switching to NSDebugLog and friends caused some problems linking -- gui
> and xgps have files trying to use it but which don't include
> Foundation/NSDebug.h -- here's a patch for xgps. I have a patch for gui
> too, but I've made local changes there that need to be sorted out.
Well, they're sorted out now.
--
| Jeff Teunissen - Pres., Dusk To Dawn Computing - deek at dusknet.dhs.org
| GPG: 1024D/9840105A 7102 808A 7733 C2F3 097B 161B 9222 DAB8 9840 105A
| Core developer, The QuakeForge Project http://www.quakeforge.net/
| Specializing in Debian GNU/Linux http://dusknet.dhs.org/~deek/
? NSDebug.gui.patch
Index: Model/GMAppKit.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Model/GMAppKit.m,v
retrieving revision 1.75
diff -u -r1.75 GMAppKit.m
--- Model/GMAppKit.m 2000/11/05 16:24:45 1.75
+++ Model/GMAppKit.m 2001/03/04 02:46:11
@@ -24,6 +24,7 @@
*/
#import <Foundation/NSArray.h>
+#import <Foundation/NSDebug.h>
#import <Foundation/NSException.h>
#include "AppKit/GMAppKit.h"
Index: Source/NSAffineTransform.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSAffineTransform.m,v
retrieving revision 1.12
diff -u -r1.12 NSAffineTransform.m
--- Source/NSAffineTransform.m 2001/01/20 17:41:57 1.12
+++ Source/NSAffineTransform.m 2001/03/04 02:46:11
@@ -29,6 +29,7 @@
#include <math.h>
#include <Foundation/NSArray.h>
+#include <Foundation/NSDebug.h>
#include <Foundation/NSException.h>
#include <Foundation/NSString.h>
Index: Source/NSApplication.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSApplication.m,v
retrieving revision 1.172
diff -u -r1.172 NSApplication.m
--- Source/NSApplication.m 2001/02/12 04:48:22 1.172
+++ Source/NSApplication.m 2001/03/04 02:46:11
@@ -45,6 +45,7 @@
#include <Foundation/NSProcessInfo.h>
#include <Foundation/NSFileManager.h>
#include <Foundation/NSUserDefaults.h>
+#include <Foundation/NSDebug.h>
#ifndef LIB_FOUNDATION_LIBRARY
# include <Foundation/NSConnection.h>
Index: Source/NSBitmapImageRep.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSBitmapImageRep.m,v
retrieving revision 1.20
diff -u -r1.20 NSBitmapImageRep.m
--- Source/NSBitmapImageRep.m 2000/12/24 14:06:06 1.20
+++ Source/NSBitmapImageRep.m 2001/03/04 02:46:11
@@ -34,6 +34,7 @@
#include <Foundation/NSException.h>
#include <Foundation/NSArray.h>
#include <Foundation/NSData.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSGraphics.h>
#include <AppKit/NSPasteboard.h>
#include <AppKit/NSBitmapImageRep.h>
Index: Source/NSBox.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSBox.m,v
retrieving revision 1.28
diff -u -r1.28 NSBox.m
--- Source/NSBox.m 2001/01/26 18:40:26 1.28
+++ Source/NSBox.m 2001/03/04 02:46:11
@@ -28,6 +28,7 @@
#include <gnustep/gui/config.h>
#include <Foundation/NSArray.h>
+#include <Foundation/NSDebug.h>
#include <Foundation/NSException.h>
#include <Foundation/NSString.h>
Index: Source/NSButtonCell.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSButtonCell.m,v
retrieving revision 1.57
diff -u -r1.57 NSButtonCell.m
--- Source/NSButtonCell.m 2000/12/28 23:39:54 1.57
+++ Source/NSButtonCell.m 2001/03/04 02:46:11
@@ -36,6 +36,7 @@
#include <Foundation/NSArray.h>
#include <Foundation/NSString.h>
#include <Foundation/NSException.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/AppKitExceptions.h>
#include <AppKit/NSButtonCell.h>
Index: Source/NSCell.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSCell.m,v
retrieving revision 1.114
diff -u -r1.114 NSCell.m
--- Source/NSCell.m 2000/12/23 14:22:16 1.114
+++ Source/NSCell.m 2001/03/04 02:46:11
@@ -37,6 +37,7 @@
#include <Foundation/NSGeometry.h>
#include <Foundation/NSException.h>
#include <Foundation/NSValue.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/AppKitExceptions.h>
#include <AppKit/NSApplication.h>
Index: Source/NSColor.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSColor.m,v
retrieving revision 1.34
diff -u -r1.34 NSColor.m
--- Source/NSColor.m 2001/02/05 01:22:43 1.34
+++ Source/NSColor.m 2001/03/04 02:46:12
@@ -33,6 +33,7 @@
#include <Foundation/NSException.h>
#include <Foundation/NSNotification.h>
#include <Foundation/NSUserDefaults.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSColor.h>
#include <AppKit/NSColorList.h>
Index: Source/NSColorWell.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSColorWell.m,v
retrieving revision 1.28
diff -u -r1.28 NSColorWell.m
--- Source/NSColorWell.m 2001/02/18 15:53:19 1.28
+++ Source/NSColorWell.m 2001/03/04 02:46:12
@@ -37,6 +37,7 @@
#include <AppKit/NSGraphics.h>
#include <AppKit/NSPasteboard.h>
#include <AppKit/NSWindow.h>
+#include <Foundation/NSDebug.h>
#include <Foundation/NSNotification.h>
static NSString *GSColorWellDidBecomeExclusiveNotification =
Index: Source/NSControl.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSControl.m,v
retrieving revision 1.47
diff -u -r1.47 NSControl.m
--- Source/NSControl.m 2000/12/24 14:07:06 1.47
+++ Source/NSControl.m 2001/03/04 02:46:12
@@ -31,6 +31,7 @@
#include <gnustep/gui/config.h>
#include <Foundation/NSException.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSControl.h>
#include <AppKit/NSColor.h>
#include <AppKit/NSEvent.h>
Index: Source/NSEvent.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSEvent.m,v
retrieving revision 1.28
diff -u -r1.28 NSEvent.m
--- Source/NSEvent.m 2000/08/03 08:48:21 1.28
+++ Source/NSEvent.m 2001/03/04 02:46:12
@@ -39,6 +39,7 @@
#include <Foundation/NSThread.h>
#include <Foundation/NSValue.h>
#include <Foundation/NSException.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSEvent.h>
#include <AppKit/NSApplication.h>
Index: Source/NSFileWrapper.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSFileWrapper.m,v
retrieving revision 1.10
diff -u -r1.10 NSFileWrapper.m
--- Source/NSFileWrapper.m 2000/08/07 22:06:02 1.10
+++ Source/NSFileWrapper.m 2001/03/04 02:46:12
@@ -39,6 +39,7 @@
#include <Foundation/NSException.h>
#include <Foundation/NSFileManager.h>
#include <Foundation/NSArchiver.h>
+#include <Foundation/NSDebug.h>
@implementation NSFileWrapper
Index: Source/NSFontManager.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSFontManager.m,v
retrieving revision 1.22
diff -u -r1.22 NSFontManager.m
--- Source/NSFontManager.m 2000/09/06 21:44:28 1.22
+++ Source/NSFontManager.m 2001/03/04 02:46:12
@@ -31,6 +31,7 @@
#include <gnustep/gui/config.h>
#include <Foundation/NSArray.h>
+#include <Foundation/NSDebug.h>
#include <Foundation/NSSet.h>
#include <AppKit/NSFontManager.h>
#include <AppKit/NSApplication.h>
Index: Source/NSFontPanel.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSFontPanel.m,v
retrieving revision 1.25
diff -u -r1.25 NSFontPanel.m
--- Source/NSFontPanel.m 2001/02/07 22:09:03 1.25
+++ Source/NSFontPanel.m 2001/03/04 02:46:12
@@ -34,6 +34,7 @@
*/
#include <gnustep/gui/config.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSFont.h>
#include <AppKit/NSFontPanel.h>
#include <AppKit/NSFontManager.h>
Index: Source/NSImage.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSImage.m,v
retrieving revision 1.49
diff -u -r1.49 NSImage.m
--- Source/NSImage.m 2001/02/19 20:50:49 1.49
+++ Source/NSImage.m 2001/03/04 02:46:12
@@ -41,6 +41,7 @@
#include <Foundation/NSDictionary.h>
#include <Foundation/NSBundle.h>
#include <Foundation/NSString.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSImage.h>
#include <AppKit/AppKitExceptions.h>
Index: Source/NSImageRep.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSImageRep.m,v
retrieving revision 1.18
diff -u -r1.18 NSImageRep.m
--- Source/NSImageRep.m 2000/12/24 14:05:39 1.18
+++ Source/NSImageRep.m 2001/03/04 02:46:12
@@ -35,6 +35,7 @@
#include <Foundation/NSException.h>
#include <Foundation/NSNotification.h>
#include <Foundation/NSUserDefaults.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSImageRep.h>
#include <AppKit/NSBitmapImageRep.h>
#include <AppKit/NSEPSImageRep.h>
Index: Source/NSMatrix.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSMatrix.m,v
retrieving revision 1.79
diff -u -r1.79 NSMatrix.m
--- Source/NSMatrix.m 2001/01/28 20:26:20 1.79
+++ Source/NSMatrix.m 2001/03/04 02:46:12
@@ -42,6 +42,7 @@
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSString.h>
#include <Foundation/NSZone.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSColor.h>
#include <AppKit/NSCursor.h>
Index: Source/NSMenuItem.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSMenuItem.m,v
retrieving revision 1.13
diff -u -r1.13 NSMenuItem.m
--- Source/NSMenuItem.m 2000/09/08 09:41:33 1.13
+++ Source/NSMenuItem.m 2001/03/04 02:46:12
@@ -33,6 +33,7 @@
#include <Foundation/NSString.h>
#include <Foundation/NSUserDefaults.h>
#include <Foundation/NSDictionary.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSMenuItem.h>
#include <AppKit/NSMenu.h>
Index: Source/NSResponder.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSResponder.m,v
retrieving revision 1.22
diff -u -r1.22 NSResponder.m
--- Source/NSResponder.m 2000/09/04 01:58:09 1.22
+++ Source/NSResponder.m 2001/03/04 02:46:12
@@ -28,6 +28,7 @@
#include <gnustep/gui/config.h>
#include <Foundation/NSCoder.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSResponder.h>
#include <AppKit/NSApplication.h>
#include <AppKit/NSMenu.h>
Index: Source/NSScrollView.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSScrollView.m,v
retrieving revision 1.53
diff -u -r1.53 NSScrollView.m
--- Source/NSScrollView.m 2001/01/28 23:01:25 1.53
+++ Source/NSScrollView.m 2001/03/04 02:46:12
@@ -32,6 +32,7 @@
#include <gnustep/gui/config.h>
#include <math.h>
+#include <Foundation/NSDebug.h>
#include <Foundation/NSException.h>
#include <AppKit/NSScroller.h>
#include <AppKit/NSColor.h>
Index: Source/NSScroller.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSScroller.m,v
retrieving revision 1.53
diff -u -r1.53 NSScroller.m
--- Source/NSScroller.m 2001/01/28 20:24:47 1.53
+++ Source/NSScroller.m 2001/03/04 02:46:12
@@ -32,6 +32,7 @@
#include <math.h>
#include <Foundation/NSDate.h>
+#include <Foundation/NSDebug.h>
#include <Foundation/NSRunLoop.h>
#include <AppKit/NSScroller.h>
Index: Source/NSTextContainer.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSTextContainer.m,v
retrieving revision 1.9
diff -u -r1.9 NSTextContainer.m
--- Source/NSTextContainer.m 2001/01/07 00:59:57 1.9
+++ Source/NSTextContainer.m 2001/03/04 02:46:12
@@ -28,6 +28,7 @@
#import <AppKit/NSTextContainer.h>
#import <AppKit/NSTextStorage.h>
#import <AppKit/NSTextView.h>
+#import <Foundation/NSDebug.h>
#import <Foundation/NSGeometry.h>
#import <Foundation/NSNotification.h>
Index: Source/NSTextView.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSTextView.m,v
retrieving revision 1.55
diff -u -r1.55 NSTextView.m
--- Source/NSTextView.m 2001/02/07 20:35:13 1.55
+++ Source/NSTextView.m 2001/03/04 02:46:12
@@ -45,6 +45,7 @@
#include <Foundation/NSProcessInfo.h>
#include <Foundation/NSString.h>
#include <Foundation/NSNotification.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSApplication.h>
#include <AppKit/NSWindow.h>
#include <AppKit/NSEvent.h>
Index: Source/NSWindow.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSWindow.m,v
retrieving revision 1.190
diff -u -r1.190 NSWindow.m
--- Source/NSWindow.m 2001/02/19 00:39:28 1.190
+++ Source/NSWindow.m 2001/03/04 02:46:13
@@ -41,6 +41,7 @@
#include <Foundation/NSSet.h>
#include <Foundation/NSLock.h>
#include <Foundation/NSUserDefaults.h>
+#include <Foundation/NSDebug.h>
#include <AppKit/NSDocument.h>
#include <AppKit/NSWindow.h>
Index: Source/NSWorkspace.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSWorkspace.m,v
retrieving revision 1.36
diff -u -r1.36 NSWorkspace.m
--- Source/NSWorkspace.m 2001/01/28 12:26:36 1.36
+++ Source/NSWorkspace.m 2001/03/04 02:46:13
@@ -45,6 +45,7 @@
#include <Foundation/NSNotificationQueue.h>
#include <Foundation/NSDistributedNotificationCenter.h>
#include <Foundation/NSConnection.h>
+#include <Foundation/NSDebug.h>
#define stringify_it(X) #X
#define mkpath(X) stringify_it(X) "/Tools"