gtkieembed r185 - trunk
- From: hiikezoe svn gnome org
- To: svn-commits-list gnome org
- Subject: gtkieembed r185 - trunk
- Date: Fri, 1 Aug 2008 06:33:35 +0000 (UTC)
Author: hiikezoe
Date: Fri Aug 1 06:33:35 2008
New Revision: 185
URL: http://svn.gnome.org/viewvc/gtkieembed?rev=185&view=rev
Log:
* configure.ac: Check IHTMLDOMNode and IHTMLAttributeCollection.
Modified:
trunk/ChangeLog
trunk/configure.ac
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Fri Aug 1 06:33:35 2008
@@ -137,6 +137,24 @@
AC_MSG_ERROR([*** Could not find Windows development environment.])
fi
+AC_COMPILE_IFELSE(
+ [AC_LANG_PROGRAM(
+ [[#include <windows.h>
+ #include <mshtml.h>]],
+ [[IHTMLDOMNode *i;]]
+ )],
+ [AC_DEFINE([HAVE_IHTMLDOMNODE_],[1],[Define if mshtml.h has IHTMLDOMNode]) result=yes],
+ [result=no])
+
+AC_COMPILE_IFELSE(
+ [AC_LANG_PROGRAM(
+ [[#include <windows.h>
+ #include <mshtml.h>]],
+ [[HAVE_IHTMLAttributeCollection *i;]]
+ )],
+ [AC_DEFINE([HAVE_IHTMLATTRIBUTECOLLECTION_],[1],[Define if mshtml.h has IHTMLAttributeCollection]) result=yes],
+ [result=no])
+
dnl **************************************************************
dnl Check for Gtk+2.
dnl **************************************************************
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]