summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-05-28 01:04:17 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-05-28 01:04:17 (GMT)
commit7f3d82def8323f7beb5047d36949b1cb9267b925 (patch)
tree46717647558fbff2856105abc710e1513dbcdc8c /programs
parent6f50184a4f50e435f6b3322c68b8b8114544496c (diff)
parentf0a0e4430bd983ce3e054735717f89a095416f24 (diff)
downloadlz4-7f3d82def8323f7beb5047d36949b1cb9267b925.zip
lz4-7f3d82def8323f7beb5047d36949b1cb9267b925.tar.gz
lz4-7f3d82def8323f7beb5047d36949b1cb9267b925.tar.bz2
Merge pull request #114 from lpsantil/djgpp
Djgpp
Diffstat (limited to 'programs')
-rw-r--r--programs/lz4cli.c5
-rw-r--r--programs/lz4io.c15
2 files changed, 15 insertions, 5 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index e5210c9..8117785 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -67,6 +67,11 @@
*****************************/
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32)
# include <io.h> /* _isatty */
+# if defined(__DJGPP__)
+# include <unistd.h>
+# define _isatty isatty
+# define _fileno fileno
+# endif
# ifdef __MINGW32__
int _fileno(FILE *stream); /* MINGW somehow forgets to include this prototype into <stdio.h> */
# endif
diff --git a/programs/lz4io.c b/programs/lz4io.c
index e782664..19db03b 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -64,11 +64,16 @@
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32)
# include <fcntl.h> /* _O_BINARY */
# include <io.h> /* _setmode, _fileno, _get_osfhandle */
-# define SET_BINARY_MODE(file) _setmode(_fileno(file), _O_BINARY)
-# include <Windows.h> /* DeviceIoControl, HANDLE, FSCTL_SET_SPARSE */
-# define SET_SPARSE_FILE_MODE(file) { DWORD dw; DeviceIoControl((HANDLE) _get_osfhandle(_fileno(file)), FSCTL_SET_SPARSE, 0, 0, 0, 0, &dw, 0); }
-# if defined(_MSC_VER) && (_MSC_VER >= 1400) /* Avoid MSVC fseek()'s 2GiB barrier */
-# define fseek _fseeki64
+# if !defined(__DJGPP__)
+# define SET_BINARY_MODE(file) _setmode(_fileno(file), _O_BINARY)
+# include <Windows.h> /* DeviceIoControl, HANDLE, FSCTL_SET_SPARSE */
+# define SET_SPARSE_FILE_MODE(file) { DWORD dw; DeviceIoControl((HANDLE) _get_osfhandle(_fileno(file)), FSCTL_SET_SPARSE, 0, 0, 0, 0, &dw, 0); }
+# if defined(_MSC_VER) && (_MSC_VER >= 1400) /* Avoid MSVC fseek()'s 2GiB barrier */
+# define fseek _fseeki64
+# endif
+# else
+# define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
+# define SET_SPARSE_FILE_MODE(file)
# endif
#else
# define SET_BINARY_MODE(file)