]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
restore openVMS support (detected by @thatsafunnyname) 186/head
authorYann Collet <yann.collet.73@gmail.com>
Fri, 13 May 2016 10:43:36 +0000 (12:43 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Fri, 13 May 2016 10:43:36 +0000 (12:43 +0200)
NEWS
lib/common/mem.h

diff --git a/NEWS b/NEWS
index 736a36ea332049963aace43503861f60db41a555..0cf171b2c22bc998930cda0ea82501123d7d58f5 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,12 @@
 v0.6.1
 New : zlib wrapper API, thanks to Przemyslaw Skibinski
+New : Ability to compile compressor / decompressor separately
+Changed : new lib directory structure
 Fixed : Legacy codec v0.5 compatible with dictionary decompression
 Fixed : Decoder corruption error (#173)
 Fixed : null-string roundtrip (#176)
-New : midipix support
 New : benchmark mode can select directory as input
+Experimental : midipix support, VMS support
 
 v0.6.0
 Stronger high compression modes, thanks to Przemyslaw Skibinski
index 5abd83d1a74fbde90aad975c8e07bf380fb65db1..201d9bb0ff6cf37f9a947f2f2a786e566668b41d 100644 (file)
@@ -63,7 +63,7 @@ extern "C" {
 /*-**************************************************************
 *  Basic Types
 *****************************************************************/
-#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
+#if  !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
 # include <stdint.h>
   typedef  uint8_t BYTE;
   typedef uint16_t U16;