Portability improvements.
This commit is contained in:
parent
f12840a72e
commit
b3eacb19f6
1 changed files with 9 additions and 0 deletions
|
@ -58,7 +58,12 @@
|
||||||
# define ios_in ios::in
|
# define ios_in ios::in
|
||||||
# define ios_out ios::out
|
# define ios_out ios::out
|
||||||
# define ios_app ios::app
|
# define ios_app ios::app
|
||||||
|
|
||||||
|
#if defined(__GNUC__) && __GNUC_MINOR__ < 8
|
||||||
|
# define ios_binary ios::bin
|
||||||
|
#else
|
||||||
# define ios_binary ios::binary
|
# define ios_binary ios::binary
|
||||||
|
#endif
|
||||||
|
|
||||||
# define ios_seekdir ios::seek_dir
|
# define ios_seekdir ios::seek_dir
|
||||||
|
|
||||||
|
@ -142,6 +147,9 @@ struct gzifstream_base
|
||||||
#endif // _zfstream_hxx
|
#endif // _zfstream_hxx
|
||||||
|
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.6 1998/12/07 21:10:26 curt
|
||||||
|
// Portability improvements.
|
||||||
|
//
|
||||||
// Revision 1.5 1998/11/06 21:17:29 curt
|
// Revision 1.5 1998/11/06 21:17:29 curt
|
||||||
// Converted to new logstream debugging facility. This allows release
|
// Converted to new logstream debugging facility. This allows release
|
||||||
// builds with no messages at all (and no performance impact) by using
|
// builds with no messages at all (and no performance impact) by using
|
||||||
|
@ -150,3 +158,4 @@ struct gzifstream_base
|
||||||
// Revision 1.4 1998/11/06 14:05:16 curt
|
// Revision 1.4 1998/11/06 14:05:16 curt
|
||||||
// More portability improvements by Bernie Bright.
|
// More portability improvements by Bernie Bright.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue