Changeset 34471 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 9, 2008, 2:02:23 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34470 r34471 1 2008-06-09 Cameron Zwarich <[email protected]> 2 3 Reviewed by Sam. 4 5 Add an include for readline/history.h to fix the build for Darwin users 6 with the GNU readline library installed. Also, clean up the style of 7 the HAVE(READLINE) check. 8 9 * kjs/testkjs.cpp: 10 (runInteractive): 11 1 12 2008-06-09 Cameron Zwarich <[email protected]> 2 13 -
trunk/JavaScriptCore/kjs/testkjs.cpp
r34470 r34471 46 46 47 47 #if HAVE(READLINE) 48 #include <readline/history.h> 48 49 #include <readline/readline.h> 49 50 #endif … … 349 350 bool done = false; 350 351 while (!done) { 351 #if HAVE _READLINE352 #if HAVE(READLINE) 352 353 char* line = readline(interactivePrompt); 353 354 if (!line)
Note:
See TracChangeset
for help on using the changeset viewer.