Change 14006 by jhi@alpha on 2002/01/01 23:40:10
VOS tweak from Paul Green: VOS has different O_BINARY
and O_TEXT, but VOS always uses LF, never CRLF.
Affected files ...
.... //depot/perl/perl.h#429 edit
Differences ...
==== //depot/perl/perl.h#429 (text) ====
Index: perl/perl.h
--- perl/perl.h.~1~ Tue Jan 1 16:45:06 2002
+++ perl/perl.h Tue Jan 1 16:45:06 2002
@@ -3943,9 +3943,11 @@
#if O_TEXT != O_BINARY
/* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
* that is, you are somehow DOSish. */
-# if defined(__BEOS__)
+# if defined(__BEOS__) || defined(__VOS__)
/* BeOS has O_TEXT != O_BINARY but O_TEXT and O_BINARY have no effect;
* BeOS is always UNIXoid (LF), not DOSish (CRLF). */
+ /* VOS has O_TEXT != O_BINARY, and they have effect,
+ * but VOS always uses LF, never CRLF. */
/* If you have O_TEXT different from your O_BINARY but you still are
* not a CRLF shop. */
# undef PERLIO_USING_CRLF
End of Patch.