mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Autotools: Sync shared argument CS (#15141)
The 3rd argument of the PHP_NEW_EXTENSION can be "shared" or "yes" to mark the extension as shared, or anything else to mark that extension as not shared. This syncs the argument values across the build system to be "no" as in other always-enabled extensions.
This commit is contained in:
@@ -38,7 +38,7 @@ EXT_HASH_SOURCES="hash.c hash_md.c hash_sha.c hash_ripemd.c hash_haval.c \
|
||||
hash_crc32.c hash_fnv.c hash_joaat.c $EXT_HASH_SHA3_SOURCES
|
||||
murmur/PMurHash.c murmur/PMurHash128.c hash_murmur.c hash_xxhash.c"
|
||||
|
||||
PHP_NEW_EXTENSION(hash, $EXT_HASH_SOURCES, 0,,$PHP_HASH_CFLAGS)
|
||||
PHP_NEW_EXTENSION([hash], [$EXT_HASH_SOURCES], [no],, [$PHP_HASH_CFLAGS])
|
||||
PHP_ADD_BUILD_DIR([$ext_builddir/murmur])
|
||||
AS_VAR_IF([SHA3_DIR],,, [PHP_ADD_BUILD_DIR([$ext_builddir/$SHA3_DIR])])
|
||||
PHP_INSTALL_HEADERS([ext/hash], m4_normalize([
|
||||
|
||||
@@ -467,7 +467,8 @@ PHP_NEW_EXTENSION([standard], m4_normalize([
|
||||
var.c
|
||||
versioning.c
|
||||
$php_ext_standard_sources
|
||||
]),,,
|
||||
]),
|
||||
[no],,
|
||||
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
|
||||
|
||||
PHP_ADD_BUILD_DIR([$ext_builddir/libavifinfo])
|
||||
|
||||
Reference in New Issue
Block a user