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:
Stefan Urbanek 2003-05-10 12:01:59 +00:00
parent 97f03dafb0
commit 4982392509
5 changed files with 20 additions and 10 deletions

View file

@ -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

View file

@ -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

View file

@ -30,6 +30,7 @@ Smalltalk_OBJC_FILES = \
SmalltalkEngine.m \
NSArray+additions.m \
NSNumber+additions.m \
NSString+additions.m \
STBlock.m \
STBlockContext.m \
STBytecodeInterpreter.m \

View file

@ -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

View file

@ -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