Bug 185330: Checksetup console input doesn't work on Win32. r,a=justdave

This commit is contained in:
jouni%heikniemi.net 2004-01-04 07:39:00 +00:00
Родитель b8b46470af
Коммит 661bd5f6b9
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -336,6 +336,14 @@ if (%missing) {
}
}
# If we're running on Windows, reset the input line terminator so that
# console input works properly - loading CGI tends to mess it up
if ($^O =~ /MSWin/i) {
$/ = "\015\012";
}
###########################################################################
# Global definitions
###########################################################################