mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 05:10:58 +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
657be892c6
commit
e7072cb446
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>
|
Mon Feb 1 13:35:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* Source/GSServicesManager.m: Replace call to getpid() with use of
|
* 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) _destroyContext:(GSContext *) context; // private use only
|
||||||
- (void) destroy;
|
- (void) destroy;
|
||||||
|
|
||||||
|
- (void) wait;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
#endif /* _GSContext_h_INCLUDE */
|
#endif /* _GSContext_h_INCLUDE */
|
||||||
|
|
|
@ -41,7 +41,8 @@ libgmodel_OBJC_FILES = IMCustomObject.m IMConnectors.m IMLoading.m GMAppKit.m \
|
||||||
GMArchiver.m
|
GMArchiver.m
|
||||||
libgmodel_HEADER_FILES_DIR = ../Headers/AppKit
|
libgmodel_HEADER_FILES_DIR = ../Headers/AppKit
|
||||||
libgmodel_HEADER_FILES_INSTALL_DIR = /gnustep/gui/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_OBJC_FILES = test.m Controller.m
|
||||||
test_MAIN_MODEL_FILE = test.gmodel
|
test_MAIN_MODEL_FILE = test.gmodel
|
||||||
|
|
|
@ -19,7 +19,7 @@ id pool = [NSAutoreleasePool new];
|
||||||
NSArray* arguments;
|
NSArray* arguments;
|
||||||
NSProcessInfo* processInfo;
|
NSProcessInfo* processInfo;
|
||||||
|
|
||||||
#if LIB_FOUNDATION_LIBRARY
|
#ifdef LIB_FOUNDATION_LIBRARY
|
||||||
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
|
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
|
||||||
#endif
|
#endif
|
||||||
#ifndef NX_CURRENT_COMPILER_RELEASE
|
#ifndef NX_CURRENT_COMPILER_RELEASE
|
||||||
|
|
|
@ -147,4 +147,8 @@ int top; // deallocated with the
|
||||||
[super dealloc];
|
[super dealloc];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void) wait
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue