mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
In current code these aren't used on Windows build. The
PHP_ZEND_TEST_EXPORTS was intended to fix MSVC level 1 (severe) warnings
via 5a04796f76 but __declspec(dllexport)
is now implemented unconditionally.
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("dl-test", "enable dl_test extension", "no");
|
|
|
|
if (PHP_DL_TEST != "no") {
|
|
EXTENSION("dl_test", "dl_test.c", true, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
}
|