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
286 B
JavaScript
8 lines
286 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("zend-test", "enable zend_test extension", "no");
|
|
|
|
if (PHP_ZEND_TEST != "no") {
|
|
EXTENSION("zend_test", "test.c observer.c fiber.c iterators.c object_handlers.c zend_mm_custom_handlers.c", PHP_ZEND_TEST_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
}
|