diff options
Diffstat (limited to 'libtiff/tiffcomp.h')
-rw-r--r-- | libtiff/tiffcomp.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libtiff/tiffcomp.h b/libtiff/tiffcomp.h index c208c9ac..516e6384 100644 --- a/libtiff/tiffcomp.h +++ b/libtiff/tiffcomp.h @@ -1,4 +1,4 @@ -/* $Header: /usr/people/sam/tiff/libtiff/RCS/tiffcomp.h,v 1.48 1996/02/06 23:50:58 sam Exp $ */ +/* $Header: /usr/people/sam/tiff/libtiff/RCS/tiffcomp.h,v 1.49 1996/04/29 21:56:21 sam Rel $ */ /* * Copyright (c) 1990-1996 Sam Leffler @@ -202,4 +202,13 @@ extern int creat(const char *path, int mode); #endif /* __cplusplus */ #endif /* __acornriscos */ +/* Bit and byte order, the default is MSB to LSB */ +#ifdef VMS +#undef HOST_FILLORDER +#undef HOST_BIGENDIAN +#define HOST_FILLORDER FILLORDER_LSB2MSB +#define HOST_BIGENDIAN 0 +#endif + + #endif /* _COMPAT_ */ |