bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fallout from NSLog -> NSDebug{L,LL}og change...


From: Jeff Teunissen
Subject: Fallout from NSLog -> NSDebug{L,LL}og change...
Date: Sat, 03 Mar 2001 21:23:38 -0500

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.

-- 
| 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/
? config.h
? configure.in.patch
? config.cache
? NSDebug.xgps.patch
? Source/config.h
? Source/shared_obj
? Tools/shared_obj
Index: Headers/gnustep/xgps/XGContextPrivate.h
===================================================================
RCS file: 
/cvsroot/gnustep/gnustep/core/xgps/Headers/gnustep/xgps/XGContextPrivate.h,v
retrieving revision 1.13
diff -u -r1.13 XGContextPrivate.h
--- Headers/gnustep/xgps/XGContextPrivate.h     2001/01/23 00:43:45     1.13
+++ Headers/gnustep/xgps/XGContextPrivate.h     2001/03/04 02:14:56
@@ -26,6 +26,7 @@
 #define _XGContextPrivate_h_INCLUDE
 
 #include <Foundation/NSArray.h>
+#include <Foundation/NSDebug.h>
 #include <Foundation/NSDictionary.h>
 #include <Foundation/NSException.h>
 #include <Foundation/NSObjCRuntime.h>
Index: Source/XGGState.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/xgps/Source/XGGState.m,v
retrieving revision 1.54
diff -u -r1.54 XGGState.m
--- Source/XGGState.m   2001/03/01 02:04:22     1.54
+++ Source/XGGState.m   2001/03/04 02:14:56
@@ -23,6 +23,8 @@
    */
 
 #include <Foundation/NSObjCRuntime.h>
+#include <Foundation/NSDebug.h>
+
 #include <AppKit/NSBezierPath.h>
 #include "gnustep/xgps/XGContext.h"
 #include "gnustep/xgps/XGGState.h"
Index: Source/SharedX/XGContextWindow.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/xgps/Source/SharedX/XGContextWindow.m,v
retrieving revision 1.73
diff -u -r1.73 XGContextWindow.m
--- Source/SharedX/XGContextWindow.m    2001/02/19 14:34:30     1.73
+++ Source/SharedX/XGContextWindow.m    2001/03/04 02:14:56
@@ -23,9 +23,12 @@
    */
 
 #include <math.h>
-#include <Foundation/NSString.h>
+
 #include <Foundation/NSArray.h>
+#include <Foundation/NSDebug.h>
+#include <Foundation/NSString.h>
 #include <Foundation/NSValue.h>
+
 #include <AppKit/NSGraphics.h>
 
 #ifdef XDPS_BACKEND_LIBRARY

reply via email to

[Prev in Thread] Current Thread [Next in Thread]