From 9cc014f915575184a59397c619626f221cc9d706 Mon Sep 17 00:00:00 2001 From: Vasiliy Fofanov Date: Tue, 5 Aug 2008 11:14:13 +0200 Subject: [PATCH] gen-oscons.c: Adapt for VMS where termios.h is not available. 2008-08-05 Vasiliy Fofanov * gen-oscons.c: Adapt for VMS where termios.h is not available. From-SVN: r138682 --- gcc/ada/gen-oscons.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/ada/gen-oscons.c b/gcc/ada/gen-oscons.c index 429e94928fb0..594964b7f9ae 100644 --- a/gcc/ada/gen-oscons.c +++ b/gcc/ada/gen-oscons.c @@ -46,7 +46,7 @@ #include #include -#ifndef __vxworks +#if !defined (__vxworks) && !defined (__VMS) # include #endif @@ -193,7 +193,7 @@ _NL #endif CND(FNDELAY, "Nonblocking") -#if !defined(__vxworks) +#if !defined(__vxworks) && !defined(__VMS) _NL TXT(" ----------------------") @@ -507,7 +507,7 @@ CND(VLNEXT, "Literal next") #endif CND(VEOL2, "Alternative EOL") -#endif /* !defined(__vxworks) */ +#endif /* !defined(__vxworks) && !defined(__VMS) */ _NL TXT(" --------------") -- 2.47.2