mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
add ZipArchive::CM_XZ constant (in upcoming libzip 1.8.0)
This commit is contained in:
parent
7686118212
commit
42226fcf03
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user