summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-12-19 12:52:08 +0000
committerWez Furlong <wez@php.net>2003-12-19 12:52:08 +0000
commit6fd8bd23674687fe74e31679d4b9c36a342182be (patch)
tree91b5ae06ddd85ba941067729d62f6ffa05896539
parentee44dd3d798c7e71f9435bb50f9123018fd244ad (diff)
downloadphp-git-6fd8bd23674687fe74e31679d4b9c36a342182be.tar.gz
Explicitly depend on oleaut32.lib
-rw-r--r--ext/com_dotnet/config.w322
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/config.w32 b/ext/com_dotnet/config.w32
index 403446c1fd..917c62a040 100644
--- a/ext/com_dotnet/config.w32
+++ b/ext/com_dotnet/config.w32
@@ -4,10 +4,10 @@
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");
AC_DEFINE('HAVE_COM_DOTNET', 1, 'Have COM_DOTNET support');
- // TODO: do a header check for this
CHECK_HEADER_ADD_INCLUDE('mscoree.h', 'CFLAGS_COM_DOTNET');
}