mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

This syncs all help texts of extension preprocessor macros to the same style "Define to 1 if the PHP extension '<ext>' is available.". [skip ci]
13 lines
562 B
JavaScript
13 lines
562 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("com-dotnet", "COM and .Net support", "yes");
|
|
|
|
if (PHP_COM_DOTNET == "yes") {
|
|
CHECK_LIB('oleaut32.lib', 'com_dotnet');
|
|
EXTENSION("com_dotnet", "com_com.c com_dotnet.c com_extension.c \
|
|
com_handlers.c com_iterator.c com_misc.c com_olechar.c \
|
|
com_typeinfo.c com_variant.c com_wrapper.c com_saproxy.c com_persist.c",
|
|
null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
AC_DEFINE('HAVE_COM_DOTNET', 1, "Define to 1 if the PHP extension 'com_dotnet' is available.");
|
|
CHECK_HEADER_ADD_INCLUDE('mscoree.h', 'CFLAGS_COM_DOTNET');
|
|
}
|