Skip to content

Commit f5c4122

Browse files
committed
Autotools: Sync shared argument CS
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.
1 parent 2b97c84 commit f5c4122

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ext/hash/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ EXT_HASH_HEADERS="php_hash.h php_hash_md.h php_hash_sha.h php_hash_ripemd.h \
4646
php_hash_fnv.h php_hash_joaat.h php_hash_sha3.h php_hash_murmur.h \
4747
php_hash_xxhash.h xxhash/xxhash.h"
4848

49-
PHP_NEW_EXTENSION(hash, $EXT_HASH_SOURCES, 0,,$PHP_HASH_CFLAGS)
49+
PHP_NEW_EXTENSION([hash], [$EXT_HASH_SOURCES], [no],, [$PHP_HASH_CFLAGS])
5050
PHP_INSTALL_HEADERS([ext/hash], [$EXT_HASH_HEADERS])

ext/standard/config.m4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,8 @@ PHP_NEW_EXTENSION([standard], m4_normalize([
467467
var.c
468468
versioning.c
469469
$php_ext_standard_sources
470-
]),,,
470+
]),
471+
[no],,
471472
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
472473

473474
PHP_ADD_BUILD_DIR([$ext_builddir/libavifinfo])

0 commit comments

Comments
 (0)