re PR libgcj/52694 (bootstrap failure: libjava/java/io/natVMConsole.cc:35:20: error: 'IUCL C' was not declared in this scope)

PR libgcj/52694
	* java/io/natVMConsole.cc (IUCLC): Define, if undefined.

From-SVN: r185811
This commit is contained in:
Gerald Pfeifer 2012-03-26 16:24:33 +00:00 committed by Gerald Pfeifer
parent 3515a00b46
commit 0a7d093345
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-03-25 Gerald Pfeifer <gerald@pfeifer.com>
PR libgcj/52694
* java/io/natVMConsole.cc (IUCLC): Define, if undefined.
2012-03-16 Andrew John Hughes <ahughes@redhat.com>
* Makefile.am: Add natVMConsole.cc.

View File

@ -19,6 +19,10 @@ details. */
#include <java/io/Console.h>
#include <java/io/VMConsole.h>
#ifndef IUCLC
#define IUCLC 0
#endif
#define TERMIOS_ECHO_IFLAGS (IUCLC|IXON|IXOFF|IXANY)
#define TERMIOS_ECHO_LFLAGS (ECHO|ECHOE|ECHOK|ECHONL|TOSTOP)