diff options
author | Rich Salz <rsalz@openssl.org> | 2016-03-17 17:53:11 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-03-17 22:06:57 +0100 |
commit | 1fbab1dc6fcb14f512a40c5755708a8bcbf84f40 (patch) | |
tree | a54f0b0b24b2a5af56e3f3e533e0a5c7063266bd /crypto/ui | |
parent | Disallow --classic for Windows (diff) | |
download | openssl-1fbab1dc6fcb14f512a40c5755708a8bcbf84f40.tar.xz openssl-1fbab1dc6fcb14f512a40c5755708a8bcbf84f40.zip |
Remove Netware and OS/2
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/ui')
-rw-r--r-- | crypto/ui/ui_openssl.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c index 9a4870803e..295449f3df 100644 --- a/crypto/ui/ui_openssl.c +++ b/crypto/ui/ui_openssl.c @@ -194,14 +194,13 @@ # define TERMIO # undef SGTTY /* - * We know that VMS, MSDOS, VXWORKS, NETWARE use entirely other mechanisms. + * We know that VMS, MSDOS, VXWORKS, use entirely other mechanisms. * MAC_OS_GUSI_SOURCE should probably go away, but that needs to be confirmed. */ # elif !defined(OPENSSL_SYS_VMS) \ && !defined(OPENSSL_SYS_MSDOS) \ && !defined(MAC_OS_GUSI_SOURCE) \ && !defined(OPENSSL_SYS_VXWORKS) \ - && !defined(OPENSSL_SYS_NETWARE) # define TERMIOS # undef TERMIO # undef SGTTY @@ -253,7 +252,7 @@ struct IOSB { }; #endif -#if defined(MAC_OS_GUSI_SOURCE) || defined(OPENSSL_SYS_NETWARE) +#if defined(MAC_OS_GUSI_SOURCE) /* * This one needs work. As a matter of fact the code is unoperational * and this is only a trick to get it compiled. @@ -465,7 +464,7 @@ static int open_console(UI *ui) CRYPTO_THREAD_write_lock(ui->lock); is_a_tty = 1; -#if defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_NETWARE) +#if defined(OPENSSL_SYS_VXWORKS) tty_in = stdin; tty_out = stderr; #else |