Files
loongoffice/winaccessibility/Library_uacccom.mk
Michael Stahl d28687d517 winaccessibility: fix locking in UAccCOM
The COM components will (usually? always?) be called on the main thread
via COM, and may also be called on any thread from the UNO event
listeners.  Both ways may access the global AccWinObjectManager.
So the easiest way to lock all that without introducing new deadlocks
seems to be to just use the SolarMutex.

The fact that the main thread is in a COM STA is rather irrelevant here
since we don't currently do the required manual marshalling of the COM
pointers so they can be accessed from UNO event listeners running in
threads other than the main thread anyway.

To get that to build:
- use prewin.h and postwin.h around ATL headers
- link UAccCOM against vcl
- define both UNICODE and _UNICODE to not break on mis-matching TCHAR
  nonsense

Change-Id: I1ccdf7a4a5c2b5f0b9c29ef39d126c4b8a16898a
2013-12-12 20:06:26 +01:00

84 lines
2.2 KiB
Makefile

# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
#
$(eval $(call gb_Library_Library,UAccCOM))
$(eval $(call gb_Library_use_custom_headers,UAccCOM,winaccessibility/ia2/idl))
$(eval $(call gb_Library_set_include,UAccCOM,\
$$(INCLUDE) \
-I$(SRCDIR)/winaccessibility/inc \
$(foreach i,$(ATL_INCLUDE), -I$(i)) \
))
$(eval $(call gb_Library_add_defs,UAccCOM,\
-DUACCCOM_DLLIMPLEMENTATION \
-D_UNICODE \
-DUNICODE \
))
$(eval $(call gb_Library_use_sdk_api,UAccCOM))
$(eval $(call gb_Library_add_nativeres,UAccCOM,UAccCOM))
$(eval $(call gb_Library_add_exception_objects,UAccCOM,\
winaccessibility/source/UAccCOM/AccAction \
winaccessibility/source/UAccCOM/AccActionBase \
winaccessibility/source/UAccCOM/AccComponent \
winaccessibility/source/UAccCOM/AccComponentBase \
winaccessibility/source/UAccCOM/AccEditableText \
winaccessibility/source/UAccCOM/AccHyperLink \
winaccessibility/source/UAccCOM/AccHypertext \
winaccessibility/source/UAccCOM/AccImage \
winaccessibility/source/UAccCOM/AccRelation \
winaccessibility/source/UAccCOM/AccTable \
winaccessibility/source/UAccCOM/AccText \
winaccessibility/source/UAccCOM/AccTextBase \
winaccessibility/source/UAccCOM/AccValue \
winaccessibility/source/UAccCOM/EnumVariant \
winaccessibility/source/UAccCOM/MAccessible \
winaccessibility/source/UAccCOM/StdAfx \
winaccessibility/source/UAccCOM/UAccCOM \
winaccessibility/source/UAccCOM/UNOXWrapper \
))
$(eval $(call gb_Library_add_ldflags,UAccCOM,\
/DEF:$(SRCDIR)/winaccessibility/source/UAccCOM/UAccCOM.def \
))
$(eval $(call gb_Library_use_libraries,UAccCOM,\
vcl \
cppu \
sal \
))
$(eval $(call gb_Library_use_externals,UAccCOM,\
boost_headers \
))
$(eval $(call gb_Library_use_system_win32_libs,UAccCOM,\
oleacc \
advapi32 \
delayimp \
kernel32 \
ole32 \
oleaut32 \
shlwapi \
user32 \
uuid \
))
$(eval $(call gb_Library_add_libs,UAccCOM,\
$(ATL_LIB)/$(if $(MSVC_USE_DEBUG_RUNTIME),atlsd.lib,atls.lib) \
))
# vim:set noet sw=4 ts=4: