summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNorm Green <norm.green@gemtalksystems.com>2019-04-17 16:20:09 (GMT)
committerNorm Green <norm.green@gemtalksystems.com>2019-04-17 16:20:09 (GMT)
commit1848ea5cbd582e3728ea4fe1ff619468753debea (patch)
treee723c373be678a9b211e7734da01b079c457c4b7 /lib
parent5dde00e5d33eb617673f62191781907468beadb7 (diff)
downloadlz4-1848ea5cbd582e3728ea4fe1ff619468753debea.zip
lz4-1848ea5cbd582e3728ea4fe1ff619468753debea.tar.gz
lz4-1848ea5cbd582e3728ea4fe1ff619468753debea.tar.bz2
Fix AIX errors/warnings
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 693bdaf..bd8fa11 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -98,8 +98,14 @@
# define LZ4_SRC_INCLUDED 1
#endif
+#ifndef LZ4_STATIC_LINKING_ONLY
#define LZ4_STATIC_LINKING_ONLY
+#endif
+
+#ifndef LZ4_DISABLE_DEPRECATE_WARNINGS
#define LZ4_DISABLE_DEPRECATE_WARNINGS /* due to LZ4_decompress_safe_withPrefix64k */
+#endif
+
#include "lz4.h"
/* see also "memory routines" below */