Displaying 1 result from an estimated 1 matches for "_z_util_h".
2002 Jan 07
0
rsync-2.5.1 / zlib patches
...u AND PRJ_ZLIB:ZUTIL.TPU on
6-JAN-2002 18:10:19.38 OPENVMS_AXP */
/* zutil.h -- internal interface and configuration of the compression
library
* Copyright (C) 1995-1998 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
@@ -13,7 +14,11 @@
#ifndef _Z_UTIL_H
#define _Z_UTIL_H
+#ifdef __VMS
+#include "rsync.h"
+#else
#include "../rsync.h"
+#endif
#include "zlib.h"
#if 0
@@ -137,9 +142,11 @@
# define fdopen(fd,mode) NULL /* No fdopen() */
#endif
-#if (defined(_MSC_VER) && (_MSC_VER >= 600))
+#ifdef...