summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2020-07-21 14:43:39 +0200
committerRemi Collet <remi@php.net>2020-07-21 14:43:52 +0200
commit42226fcf0369c7d410f47f45e0249b3dcf01c78a (patch)
treedd2bfcfdaedf0b70b8f292f1f941a4d55b989c1e
parent7686118212f6785320c5dac72f2b6d02d5021faf (diff)
downloadphp-git-42226fcf0369c7d410f47f45e0249b3dcf01c78a.tar.gz
add ZipArchive::CM_XZ constant (in upcoming libzip 1.8.0)
-rw-r--r--ext/zip/php_zip.c3
-rw-r--r--ext/zip/php_zip.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c
index 1793f5d018..841488bd61 100644
--- a/ext/zip/php_zip.c
+++ b/ext/zip/php_zip.c
@@ -3082,6 +3082,9 @@ static PHP_MINIT_FUNCTION(zip)
#ifdef ZIP_CM_LZMA2
REGISTER_ZIP_CLASS_CONST_LONG("CM_LZMA2", ZIP_CM_LZMA2);
#endif
+#ifdef ZIP_CM_ZSTD
+ REGISTER_ZIP_CLASS_CONST_LONG("CM_ZSTD", ZIP_CM_ZSTD);
+#endif
#ifdef ZIP_CM_XZ
REGISTER_ZIP_CLASS_CONST_LONG("CM_XZ", ZIP_CM_XZ);
#endif
diff --git a/ext/zip/php_zip.h b/ext/zip/php_zip.h
index ddc35df556..92df580874 100644
--- a/ext/zip/php_zip.h
+++ b/ext/zip/php_zip.h
@@ -31,7 +31,7 @@ extern zend_module_entry zip_module_entry;
#define ZIP_OVERWRITE ZIP_TRUNCATE
#endif
-#define PHP_ZIP_VERSION "1.19.0"
+#define PHP_ZIP_VERSION "1.19.1-dev"
#define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)