mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Make sure config.h file is included.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2232 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
91f71eb3ad
commit
d7d2c449e6
28 changed files with 63 additions and 11 deletions
32
ChangeLog
32
ChangeLog
|
@ -11,6 +11,38 @@ Tue Mar 4 18:05:24 1997 Ovidiu Predescu <ovidiu@bx.logicnet.ro>
|
|||
* Source/NSTextFieldCell.m: -drawWithFrame:inView: : Call super's
|
||||
implementation.
|
||||
|
||||
Tue Mar 4 17:28:58 1997 GNUstep Development <gnustep@net-community.com>
|
||||
|
||||
* Make sure gnustep-gui config.h file is included.
|
||||
* Headers/gnustep/gui/AppKit.h: Likewise.
|
||||
* Headers/gnustep/gui/NSCell.h: Likewise.
|
||||
* Headers/gnustep/gui/NSColor.h: Likewise.
|
||||
* Headers/gnustep/gui/NSColorList.h: Likewise.
|
||||
* Headers/gnustep/gui/NSColorPicker.h: Likewise.
|
||||
* Headers/gnustep/gui/NSCursor.h: Likewise.
|
||||
* Headers/gnustep/gui/NSDataLink.h: Likewise.
|
||||
* Headers/gnustep/gui/NSDataLinkManager.h: Likewise.
|
||||
* Headers/gnustep/gui/NSEvent.h: Likewise.
|
||||
* Headers/gnustep/gui/NSFont.h: Likewise.
|
||||
* Headers/gnustep/gui/NSFontManager.h: Likewise.
|
||||
* Headers/gnustep/gui/NSImage.h: Likewise.
|
||||
* Headers/gnustep/gui/NSImageRep.h: Likewise.
|
||||
* Headers/gnustep/gui/NSPasteboard.h: Likewise.
|
||||
* Headers/gnustep/gui/NSPrintInfo.h: Likewise.
|
||||
* Headers/gnustep/gui/NSPrintOperation.h: Likewise.
|
||||
* Headers/gnustep/gui/NSPrinter.h: Likewise.
|
||||
* Headers/gnustep/gui/NSResponder.h: Likewise.
|
||||
* Headers/gnustep/gui/NSScreen.h: Likewise.
|
||||
* Headers/gnustep/gui/NSSelection.h: Likewise.
|
||||
* Headers/gnustep/gui/NSSpellChecker.h: Likewise.
|
||||
* Headers/gnustep/gui/NSSpellServer.h: Likewise.
|
||||
* Headers/gnustep/gui/NSWorkspace.h: Likewise.
|
||||
* Source/Makefile.in: Remove non-existent header files.
|
||||
* Source/tiff.m: Remove unneeded header file.
|
||||
* Source/NSDPSContext.m: Remove unneeded header file.
|
||||
|
||||
* Headers/gnustep/gui/config.h.in: Define NSDebugLog if not defined.
|
||||
|
||||
Tue Mar 4 17:04:16 1997 GNUstep Development <gnustep@net-community.com>
|
||||
|
||||
* Reinstate NSCursor and NSColorWell changes that got lost.
|
||||
|
|
|
@ -29,12 +29,6 @@
|
|||
#ifndef _GNUstep_H_AppKit
|
||||
#define _GNUstep_H_AppKit
|
||||
|
||||
//
|
||||
// System dependent information
|
||||
//
|
||||
float MB_SCREEN_MAXWIDTH();
|
||||
float MB_SCREEN_MAXHEIGHT();
|
||||
|
||||
//
|
||||
// Display Postscript System
|
||||
//
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSCell
|
||||
#define _GNUstep_H_NSCell
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSColor
|
||||
#define _GNUstep_H_NSColor
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSColorList
|
||||
#define _GNUstep_H_NSColorList
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSColorPicker
|
||||
#define _GNUstep_H_NSColorPicker
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <AppKit/NSColorPicking.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSCursor
|
||||
#define _GNUstep_H_NSCursor
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSImage;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSDataLink
|
||||
#define _GNUstep_H_NSDataLink
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSDataLinkManager
|
||||
#define _GNUstep_H_NSDataLinkManager
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSEvent
|
||||
#define _GNUstep_H_NSEvent
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
#include <Foundation/NSDate.h>
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#ifndef _GNUstep_H_NSFont
|
||||
#define _GNUstep_H_NSFont
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSFontManager
|
||||
#define _GNUstep_H_NSFontManager
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSImage
|
||||
#define _GNUstep_H_NSImage
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <DPSClient/TypesandConstants.h>
|
||||
#include <Foundation/NSBundle.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSImageRep
|
||||
#define _GNUstep_H_NSImageRep
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSPasteboard
|
||||
#define _GNUstep_H_NSPasteboard
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSString.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSPrintInfo
|
||||
#define _GNUstep_H_NSPrintInfo
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSPrintOperation
|
||||
#define _GNUstep_H_NSPrintOperation
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSPrinter
|
||||
#define _GNUstep_H_NSPrinter
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSResponder
|
||||
#define _GNUstep_H_NSResponder
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSString;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSScreen
|
||||
#define _GNUstep_H_NSScreen
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <AppKit/NSGraphics.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSSelection
|
||||
#define _GNUstep_H_NSSelection
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
@class NSData;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSSpellChecker
|
||||
#define _GNUstep_H_NSSpellChecker
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSRange.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSSpellServer
|
||||
#define _GNUstep_H_NSSpellServer
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSArray.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSWorkspace
|
||||
#define _GNUstep_H_NSWorkspace
|
||||
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
|
||||
|
|
|
@ -39,5 +39,14 @@
|
|||
/* Do we have the DPS Client library? */
|
||||
#undef HAVE_DPS_DPSCLIENT_H
|
||||
|
||||
/* Define NSDebugLog if not defined */
|
||||
#ifndef NSDebugLog
|
||||
# ifdef DEBUGLOG
|
||||
# define NSDebugLog(format, args...) NSLog(format, ## args)
|
||||
# else
|
||||
# define NSDebugLog(format, args...)
|
||||
# endif
|
||||
#endif /* !NSDebugLog */
|
||||
|
||||
#endif /* _GNUstep_H_AppKitConfig */
|
||||
|
||||
|
|
|
@ -157,9 +157,7 @@ gui/NSView.h \
|
|||
gui/NSWindow.h \
|
||||
gui/NSWorkspace.h \
|
||||
gui/TrackingRectangle.h \
|
||||
gui/TypesandConstants.h \
|
||||
gui/config.h \
|
||||
gui/stdappkit.h \
|
||||
gui/nsimage-tiff.h
|
||||
|
||||
GNUSTEP_DPS_HEADERS = dps/NSDPSContext.h \
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include <Foundation/NSLock.h>
|
||||
#include <Foundation/NSData.h>
|
||||
#include <Foundation/NSDictionary.h>
|
||||
#include <gnustep/gui/config.h>
|
||||
#include <gnustep/dps/NSDPSContext.h>
|
||||
|
||||
//
|
||||
|
|
|
@ -54,10 +54,8 @@
|
|||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
//#include <gnustep/base/preface.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#include <Foundation/NSUtilities.h>
|
||||
#include <gnustep/gui/config.h>
|
||||
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in a new issue