From 3f431e279aab16465496cc0de03a1af874c1ce65 Mon Sep 17 00:00:00 2001 From: Jan Arve Saether Date: Mon, 26 Jan 2015 16:56:34 +0100 Subject: Do not compile in dlldata.c or ia2_api_all_c.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These files are only required for a COM server, but since the IAccessible2Proxy will actually be the effective server (inside our process). We just have to make sure we respond to the correct events, and reimplement the virtual functions as required. This is already done, so these files can be removed. Task-number: QTBUG-30838 Task-number: QTBUG-28645 Change-Id: Ic95101945bad263a6da63c08b3e47cc0c9d5734a Reviewed-by: Friedemann Kleint Reviewed-by: Joerg Bornemann Reviewed-by: Jan Arve Sæther Reviewed-by: Frederik Gladhorn --- src/3rdparty/iaccessible2/idl/Makefile | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'src/3rdparty/iaccessible2/idl/Makefile') diff --git a/src/3rdparty/iaccessible2/idl/Makefile b/src/3rdparty/iaccessible2/idl/Makefile index e186b5ab54..e3a1d5e4a1 100644 --- a/src/3rdparty/iaccessible2/idl/Makefile +++ b/src/3rdparty/iaccessible2/idl/Makefile @@ -1,21 +1,17 @@ MIDL = midl -MIDL_OPTS = /out ..\generated +MIDL_OPTS = /dlldata NUL /proxy NUL /notlb /out ..\generated first: all all: x86 amd64 -MIDL_OPTS = /out ..\generated\x86 /env win32 - x86: - -del ..\generated\x86\dlldata.c -md ..\generated\x86 - $(MIDL) $(MIDL_OPTS) ia2_api_all.idl + $(MIDL) $(MIDL_OPTS)\x86 /env win32 ia2_api_all.idl -MIDL_OPTS = /out ..\generated\amd64 /env amd64 amd64: - -del ..\generated\amd64\dlldata.c -md ..\generated\amd64 - $(MIDL) $(MIDL_OPTS) ia2_api_all.idl + $(MIDL) $(MIDL_OPTS)\amd64 /env amd64 ia2_api_all.idl + -- cgit v1.2.3