aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/lz4/patches/no-deprecated.patch
blob: b23f66ffbb0155752e9609138efb5c54a3dddcaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- b/lz4.h
+++ a/lz4.h
@@ -582,6 +582,11 @@ union LZ4_streamDecode_u {
  *  Another method is to define LZ4_DISABLE_DEPRECATE_WARNINGS
  *  before including the header file.
  */
+
+#ifndef LZ4_DISABLE_DEPRECATE_WARNINGS
+#  define LZ4_DISABLE_DEPRECATE_WARNINGS
+#endif
+
 #ifdef LZ4_DISABLE_DEPRECATE_WARNINGS
 #  define LZ4_DEPRECATED(message)   /* disable deprecation warnings */
 #else