summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2024-03-11 15:35:36 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2024-05-14 11:57:42 +0900
commit818a018d1642299e938f5182de9a9c07081f85e9 (patch)
treef59c4ed658bf8ec65dec5e9048b8b62dd601263f
parent05b30d7cf2fbdab898910cd1a4450fa61b799300 (diff)
downloadzlib-818a018d1642299e938f5182de9a9c07081f85e9.tar.gz
zlib-818a018d1642299e938f5182de9a9c07081f85e9.tar.bz2
zlib-818a018d1642299e938f5182de9a9c07081f85e9.zip
Fix ZLIB_VERSION version info
configure check error log. ===================================================================== [ 218s] configure: error: *** zlib too old - check config.log *** [ 218s] Your reported zlib version has known security problems. It's possible your [ 218s] vendor has fixed these problems without changing the version number. If you [ 218s] are sure this is the case, you can disable the check by running [ 218s] "./configure --without-zlib-version-check". [ 218s] If you are in doubt, upgrade zlib to version 1.2.3 or greater. [ 218s] See http://www.gzip.org/zlib/ for details. ===================================================================== configure file check 3 digits for zlib version. so change zlib version "1.3" to "1.3.0" Change-Id: I960f66b7126bd692d3eeea85930c24e75e6b0657
-rw-r--r--zlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zlib.h b/zlib.h
index 6b7244f..806f3fa 100644
--- a/zlib.h
+++ b/zlib.h
@@ -37,7 +37,7 @@
extern "C" {
#endif
-#define ZLIB_VERSION "1.3"
+#define ZLIB_VERSION "1.3.0"
#define ZLIB_VERNUM 0x1300
#define ZLIB_VER_MAJOR 1
#define ZLIB_VER_MINOR 3