mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-19 09:50:43 +00:00
Fixed linking under mingw32
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16682 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
97f03dafb0
commit
4982392509
5 changed files with 20 additions and 10 deletions
|
@ -1,3 +1,7 @@
|
|||
2003 May 10
|
||||
|
||||
* Fixed linking under mingw32
|
||||
|
||||
2003 May 2 Stefan Urbanek <urbanek@host.sk>
|
||||
|
||||
* STBundleInfo: added objectReferenceDictionary; removed unnecessary ST
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
2003 May 9
|
||||
|
||||
* NSString+additions: added
|
||||
|
||||
2003 May 4 Stefan Urbanek <urbanek@host.sk>
|
||||
|
||||
* SmalltalkEngine: remove exception guard to allow debugging
|
||||
|
||||
2003 Apr 29 Stefan Urbanek <urbanek@host.sk>
|
||||
|
||||
* STSourceReader: fixed reading of identifiers at the end of source
|
||||
|
|
|
@ -30,6 +30,7 @@ Smalltalk_OBJC_FILES = \
|
|||
SmalltalkEngine.m \
|
||||
NSArray+additions.m \
|
||||
NSNumber+additions.m \
|
||||
NSString+additions.m \
|
||||
STBlock.m \
|
||||
STBlockContext.m \
|
||||
STBytecodeInterpreter.m \
|
||||
|
|
|
@ -70,17 +70,11 @@
|
|||
|
||||
[compiler setEnvironment:env];
|
||||
|
||||
NS_DURING
|
||||
script = [compiler compileString:sourceCode];
|
||||
retval = [script executeInEnvironment:env];
|
||||
NS_HANDLER
|
||||
RELEASE(compiler);
|
||||
compiler = nil;
|
||||
[localException raise];
|
||||
NS_ENDHANDLER
|
||||
|
||||
RELEASE(compiler);
|
||||
AUTORELEASE(compiler);
|
||||
|
||||
script = [compiler compileString:sourceCode];
|
||||
retval = [script executeInEnvironment:env];
|
||||
|
||||
return retval;
|
||||
}
|
||||
@end
|
||||
|
|
|
@ -90,6 +90,9 @@ StepTalk_AGSDOC_FLAGS = \
|
|||
-Declared StepTalk \
|
||||
-DocumentationDirectory ../Documentation/Reference
|
||||
|
||||
ifeq ($(GNUSTEP_TARGET_OS),mingw32)
|
||||
libStepTalk_LIBRARIES_DEPEND_UPON += -lgnustep-base -lobjc
|
||||
endif
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
|
|
Loading…
Reference in a new issue