diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-07-06 16:39:06 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-07-06 16:39:06 +0200 |
commit | 5315f6d376ac9ccbc43d257fa7c4d2cb6400be62 (patch) | |
tree | cf6034e6db90df20ba0d907fa0b7df09c4d1c967 | |
parent | 13c8a8e6c4595686ee3ce7d6cd0be6b4838e0dba (diff) |
Fix more compilation errors.
-rw-r--r-- | GNUmakefile | 6 | ||||
-rw-r--r-- | MLKReadEvalPrintLoop.m | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 20881fd..a09962f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -51,11 +51,13 @@ etshell_OBJC_FILES = StepTalkShell/STShell.m \ StepTalkShell/STShell+output.m \ StepTalkShell/stshell_tool.m etshell_OBJC_LIBS += -lStepTalk -lreadline -lncurses -lToiletKit \ - -LToiletKit.framework + -LToiletKit.framework \ + -LToiletKit.framework/Versions/Current etshell_OBJCFLAGS = -w toilet_OBJC_FILES = MLKReadEvalPrintLoop.m -toilet_OBJC_LIBS += -ledit -lncurses -lToiletKit -LToiletKit.framework +toilet_OBJC_LIBS += -ledit -lncurses -lToiletKit -LToiletKit.framework \ + -LToiletKit.framework/Versions/Current Test_OBJC_FILES = MLKLowLevelTests.m Test_OBJC_LIBS = -lUnitKit -LToiletKit.framework -lToiletKit diff --git a/MLKReadEvalPrintLoop.m b/MLKReadEvalPrintLoop.m index 1005ac7..ed073e7 100644 --- a/MLKReadEvalPrintLoop.m +++ b/MLKReadEvalPrintLoop.m @@ -30,8 +30,6 @@ #import <Foundation/NSNull.h> #import <Foundation/NSString.h> -#import <editline/history.h> -#import <editline/readline.h> #import <histedit.h> |