mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
*BSD fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3639 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
392f56f92b
commit
6f7d5e3738
5 changed files with 15 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
1999-02-01 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Model/test.m (main): Fix LIB_FOUNDATION ifdef.
|
||||
* Source/GSContext.m (-wait): New method. (Bug report from Eric
|
||||
Norum <eric@skatter.usask.ca>).
|
||||
|
||||
Mon Feb 1 13:35:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/GSServicesManager.m: Replace call to getpid() with use of
|
||||
|
|
|
@ -120,6 +120,8 @@ typedef enum _NSWindowOrderingMode {
|
|||
+ (void) _destroyContext:(GSContext *) context; // private use only
|
||||
- (void) destroy;
|
||||
|
||||
- (void) wait;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* _GSContext_h_INCLUDE */
|
||||
|
|
|
@ -41,7 +41,8 @@ libgmodel_OBJC_FILES = IMCustomObject.m IMConnectors.m IMLoading.m GMAppKit.m \
|
|||
GMArchiver.m
|
||||
libgmodel_HEADER_FILES_DIR = ../Headers/AppKit
|
||||
libgmodel_HEADER_FILES_INSTALL_DIR = /gnustep/gui/AppKit
|
||||
libgmodel_HEADER_FILES = IMConnectors.h IMCustomObject.h IMLoading.h GMAppKit.h
|
||||
libgmodel_HEADER_FILES = IMConnectors.h IMCustomObject.h IMLoading.h \
|
||||
GMAppKit.h GMArchiver.h
|
||||
|
||||
test_OBJC_FILES = test.m Controller.m
|
||||
test_MAIN_MODEL_FILE = test.gmodel
|
||||
|
|
|
@ -19,7 +19,7 @@ id pool = [NSAutoreleasePool new];
|
|||
NSArray* arguments;
|
||||
NSProcessInfo* processInfo;
|
||||
|
||||
#if LIB_FOUNDATION_LIBRARY
|
||||
#ifdef LIB_FOUNDATION_LIBRARY
|
||||
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
|
||||
#endif
|
||||
#ifndef NX_CURRENT_COMPILER_RELEASE
|
||||
|
|
|
@ -147,4 +147,8 @@ int top; // deallocated with the
|
|||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void) wait
|
||||
{
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue