Kaydet (Commit) dabe10eb authored tarafından Luboš Luňák's avatar Luboš Luňák

workaround race condition with mixing internal/system cairo libs

http://lists.freedesktop.org/archives/libreoffice/2013-April/051026.html

Change-Id: I81031d8290efcc4f343af7bdffb4762411f4f107
üst b1fc17ea
......@@ -52,6 +52,14 @@ $(eval $(call gb_StaticLibrary_add_defs,plugcon,\
))
$(eval $(call gb_StaticLibrary_use_external,plugcon,gtk))
# Gtk uses cairo, and if we build internal cairo, the linker could
# pick up our cairo libs before they're fully ready, causing problems
# (e.g. using our libpixman and system libcairo). Depend on cairo
# to delay build until cairo is done.
ifeq ($(SYSTEM_CAIRO),NO)
$(eval $(call gb_StaticLibrary_use_external,plugcon,cairo))
endif
endif # ENABLE_GTK=TRUE
$(eval $(call gb_StaticLibrary_add_exception_objects,plugcon,\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment