e9e30138bd
Unfortunately the evolution-data-server client-side libraries seem to block the calling thread. This is a major problem as we must never ever block the main thread (doing so causes animations to flicker etc.). In the worst case, this problem causes login to hang (without falling back to fall-back mode) and in the best case it slows down login until a network connection is acquired. Additionally, in order to sanely use these evolution-data-server libraries, GConf has to be involved and GConf is not thread-safe. So it's not really feasible just moving the code to a separate thread. Therefore, move all calendar IO out of process and use a simple (and private) D-Bus interface for the shell to communicate with the out-of-process helper. For simplification, remove existing in-process code since internal interfaces have been slightly revised. This means that the shell is no longer using any native code for drawing the calendar dropdown. https://bugzilla.gnome.org/show_bug.cgi?id=641396 Signed-off-by: David Zeuthen <davidz@redhat.com>
302 lines
8.3 KiB
Makefile
302 lines
8.3 KiB
Makefile
NULL =
|
|
BUILT_SOURCES =
|
|
CLEANFILES =
|
|
EXTRA_DIST =
|
|
libexec_PROGRAMS =
|
|
noinst_LTLIBRARIES =
|
|
noinst_PROGRAMS =
|
|
|
|
.AUTOPARALLEL:
|
|
|
|
bin_SCRIPTS = gnome-shell
|
|
|
|
gnome-shell: gnome-shell.in
|
|
$(AM_V_GEN) sed -e "s|@MUTTER_BIN_DIR[@]|$(MUTTER_BIN_DIR)|" \
|
|
-e "s|@datadir[@]|$(datadir)|" \
|
|
-e "s|@libexecdir[@]|$(libexecdir)|" \
|
|
-e "s|@libdir[@]|$(libdir)|" \
|
|
-e "s|@pkgdatadir[@]|$(pkgdatadir)|" \
|
|
-e "s|@PYTHON[@]|$(PYTHON)|" \
|
|
-e "s|@VERSION[@]|$(VERSION)|" \
|
|
-e "s|@sysconfdir[@]|$(sysconfdir)|" \
|
|
$< > $@ && chmod a+x $@
|
|
CLEANFILES += gnome-shell
|
|
EXTRA_DIST += gnome-shell.in
|
|
|
|
include Makefile-gdmuser.am
|
|
include Makefile-st.am
|
|
include Makefile-tray.am
|
|
include Makefile-gvc.am
|
|
include Makefile-calendar-server.am
|
|
|
|
gnome_shell_cflags = \
|
|
$(MUTTER_PLUGIN_CFLAGS) \
|
|
$(LIBGNOMEUI_CFLAGS) \
|
|
-I$(srcdir)/tray \
|
|
-DLOCALEDIR=\"$(datadir)/locale\" \
|
|
-DGNOME_SHELL_LIBEXECDIR=\"$(libexecdir)\" \
|
|
-DGNOME_SHELL_DATADIR=\"$(pkgdatadir)\" \
|
|
-DGNOME_SHELL_PKGLIBDIR=\"$(pkglibdir)\" \
|
|
-DJSDIR=\"$(pkgdatadir)/js\"
|
|
|
|
plugindir = $(MUTTER_PLUGIN_DIR)
|
|
plugin_LTLIBRARIES = libgnome-shell.la
|
|
|
|
shell_built_sources = \
|
|
shell-marshal.h \
|
|
shell-marshal.c \
|
|
shell-enum-types.h \
|
|
shell-enum-types.c
|
|
|
|
BUILT_SOURCES += $(shell_built_sources)
|
|
EXTRA_DIST += shell-marshal.list
|
|
|
|
shell_public_headers_h = \
|
|
shell-app.h \
|
|
shell-app-system.h \
|
|
shell-app-usage.h \
|
|
shell-arrow.h \
|
|
shell-doc-system.h \
|
|
shell-embedded-window.h \
|
|
shell-generic-container.h \
|
|
shell-gtk-embed.h \
|
|
shell-global.h \
|
|
shell-perf-log.h \
|
|
shell-slicer.h \
|
|
shell-stack.h \
|
|
shell-tray-icon.h \
|
|
shell-tray-manager.h \
|
|
shell-util.h \
|
|
shell-window-tracker.h \
|
|
shell-wm.h \
|
|
shell-xfixes-cursor.h
|
|
|
|
libgnome_shell_la_SOURCES = \
|
|
$(shell_built_sources) \
|
|
$(shell_public_headers_h) \
|
|
shell-app-private.h \
|
|
shell-embedded-window-private.h \
|
|
shell-global-private.h \
|
|
shell-jsapi-compat-private.h \
|
|
shell-window-tracker-private.h \
|
|
shell-wm-private.h \
|
|
gnome-shell-plugin.c \
|
|
shell-app.c \
|
|
shell-a11y.h \
|
|
shell-a11y.c \
|
|
shell-app-system.c \
|
|
shell-app-usage.c \
|
|
shell-arrow.c \
|
|
shell-doc-system.c \
|
|
shell-embedded-window.c \
|
|
shell-generic-container.c \
|
|
shell-gtk-embed.c \
|
|
shell-global.c \
|
|
shell-perf-log.c \
|
|
shell-polkit-authentication-agent.h \
|
|
shell-polkit-authentication-agent.c \
|
|
shell-slicer.c \
|
|
shell-stack.c \
|
|
shell-tray-icon.c \
|
|
shell-tray-manager.c \
|
|
shell-util.c \
|
|
shell-window-tracker.c \
|
|
shell-wm.c \
|
|
shell-xfixes-cursor.c
|
|
|
|
libgnome_shell_la_gir_sources = \
|
|
$(filter-out %-private.h $(shell_recorder_non_gir_sources), $(shell_public_headers_h) $(libgnome_shell_la_SOURCES))
|
|
|
|
########################################
|
|
|
|
shell_recorder_sources = \
|
|
shell-recorder.c \
|
|
shell-recorder.h
|
|
|
|
# Custom element is an internal detail
|
|
shell_recorder_non_gir_sources = \
|
|
shell-recorder-src.c \
|
|
shell-recorder-src.h
|
|
|
|
if BUILD_RECORDER
|
|
libgnome_shell_la_SOURCES += $(shell_recorder_sources) $(shell_recorder_non_gir_sources)
|
|
|
|
noinst_PROGRAMS += test-recorder
|
|
|
|
test_recorder_CPPFLAGS = $(TEST_SHELL_RECORDER_CFLAGS)
|
|
test_recorder_LDADD = $(TEST_SHELL_RECORDER_LIBS)
|
|
|
|
test_recorder_SOURCES = \
|
|
$(shell_recorder_sources) $(shell_recorder_non_gir_sources) \
|
|
test-recorder.c
|
|
endif BUILD_RECORDER
|
|
|
|
########################################
|
|
|
|
# In order to run the interactive tests for GUI components, we need to have
|
|
# an executable that exports the St components. Libtool doesn't have a way
|
|
# to include all the symbols from a convenience library into a executable
|
|
# so what we do is build a small uninstalled library that pulls in the
|
|
# St convenience library and link the test running program to that.
|
|
|
|
noinst_LTLIBRARIES += libjs-test.la
|
|
|
|
libjs_test_la_LDFLAGS = -rpath $(libdir)
|
|
libjs_test_la_CPPFLAGS = $(JS_TEST_CFLAGS)
|
|
libjs_test_la_LIBADD = $(JS_TEST_LIBS) libst-1.0.la
|
|
|
|
# The tests use or reference a couple of Shell classes
|
|
libjs_test_la_SOURCES = \
|
|
shell-generic-container.c \
|
|
shell-perf-log.c
|
|
|
|
noinst_PROGRAMS += run-js-test
|
|
|
|
run_js_test_CPPFLAGS = $(JS_TEST_CFLAGS)
|
|
run_js_test_LDADD = $(JS_TEST_LIBS) libjs-test.la
|
|
run_js_test_LDFLAGS = -export-dynamic
|
|
|
|
run_js_test_SOURCES = \
|
|
run-js-test.c
|
|
|
|
########################################
|
|
|
|
shell-marshal.h: stamp-shell-marshal.h
|
|
@true
|
|
stamp-shell-marshal.h: Makefile shell-marshal.list
|
|
$(AM_V_GEN) $(GLIB_GENMARSHAL) \
|
|
--prefix=_shell_marshal \
|
|
--header \
|
|
$(srcdir)/shell-marshal.list > xgen-smh && \
|
|
(cmp -s xgen-smh shell-marshal.h || cp -f xgen-smh shell-marshal.h) && \
|
|
rm -f xgen-smh && \
|
|
echo timestamp > $(@F)
|
|
CLEANFILES += stamp-shell-marshal.h
|
|
|
|
shell-marshal.c: Makefile shell-marshal.list
|
|
$(AM_V_GEN) (echo "#include \"shell-marshal.h\"" ; \
|
|
$(GLIB_GENMARSHAL) \
|
|
--prefix=_shell_marshal \
|
|
--body \
|
|
$(srcdir)/shell-marshal.list ) > xgen-smc && \
|
|
cp -f xgen-smc shell-marshal.c && \
|
|
rm -f xgen-smc
|
|
|
|
|
|
shell-enum-types.h: stamp-shell-enum-types.h Makefile
|
|
@true
|
|
stamp-shell-enum-types.h: $(srcdir)/shell-enum-types.h.in $(shell_public_headers_h)
|
|
$(AM_V_GEN) ( cd $(srcdir) && \
|
|
$(GLIB_MKENUMS) \
|
|
--template $< \
|
|
$(shell_public_headers_h) ) > $@.tmp && \
|
|
(cmp -s $@.tmp shell-enum-types.h || mv $@.tmp shell-enum-types.h) && \
|
|
rm -f $@.tmp && \
|
|
echo timestamp > $(@F)
|
|
EXTRA_DIST += shell-enum-types.h.in
|
|
CLEANFILES += stamp-shell-enum-types.h
|
|
|
|
shell-enum-types.c: shell-enum-types.c.in stamp-shell-enum-types.h
|
|
$(AM_V_GEN) ( cd $(srcdir) && \
|
|
$(GLIB_MKENUMS) \
|
|
--template $< \
|
|
$(shell_public_headers_h) ) > $@.tmp && \
|
|
mv $@.tmp $@ && \
|
|
rm -f $@.tmp
|
|
EXTRA_DIST += shell-enum-types.c.in
|
|
|
|
libgnome_shell_la_LDFLAGS = -avoid-version -module
|
|
libgnome_shell_la_LIBADD = \
|
|
-lm \
|
|
$(MUTTER_PLUGIN_LIBS) \
|
|
$(LIBGNOMEUI_LIBS) \
|
|
$(BLUETOOTH_LIBS) \
|
|
libst-1.0.la \
|
|
libgdmuser-1.0.la \
|
|
libtray.la \
|
|
libgvc.la \
|
|
$(NULL)
|
|
|
|
libgnome_shell_la_CPPFLAGS = $(gnome_shell_cflags) $(LIBECAL_CFLAGS)
|
|
|
|
typelibdir = $(pkglibdir)
|
|
typelib_DATA = Shell-0.1.typelib St-1.0.typelib Gdm-1.0.typelib Gvc-1.0.typelib
|
|
|
|
Shell-0.1.gir: $(mutter) $(G_IR_SCANNER) St-1.0.gir libgnome-shell.la Makefile
|
|
$(AM_V_GEN) $(G_IR_SCANNER) \
|
|
--namespace=Shell \
|
|
--nsversion=0.1 \
|
|
--warn-all \
|
|
--warn-error \
|
|
--add-include-path=$(MUTTER_LIB_DIR)/mutter/ \
|
|
--include=Clutter-1.0 \
|
|
--include=ClutterX11-1.0 \
|
|
--include=Meta-2.91 \
|
|
--include=TelepathyGLib-0.12 \
|
|
--libtool="$(LIBTOOL)" \
|
|
--add-include-path=$(builddir) \
|
|
--include=St-1.0 \
|
|
--program=mutter \
|
|
--program-arg=--mutter-plugins=$$(pwd)/libgnome-shell.la \
|
|
$(addprefix $(srcdir)/,$(libgnome_shell_la_gir_sources)) \
|
|
$(libgnome_shell_la_CPPFLAGS) \
|
|
-I $(srcdir) \
|
|
-o $@
|
|
CLEANFILES += Shell-0.1.gir
|
|
|
|
# The dependency on libgnome-shell.la here is because g-ir-compiler opens it
|
|
# (not the fake library, since we've already done the rewriting)
|
|
Shell-0.1.typelib: libgnome-shell.la Shell-0.1.gir
|
|
$(AM_V_GEN) \
|
|
$(G_IR_COMPILER) \
|
|
--includedir=. \
|
|
--includedir=$(MUTTER_LIB_DIR)/mutter/ \
|
|
Shell-0.1.gir -o $@
|
|
CLEANFILES += Shell-0.1.typelib
|
|
|
|
St-1.0.gir: $(mutter) $(G_IR_SCANNER) libst-1.0.la Makefile
|
|
$(AM_V_GEN) $(G_IR_SCANNER) \
|
|
--namespace=St \
|
|
--nsversion=1.0 \
|
|
--warn-all \
|
|
--warn-error \
|
|
--include=Clutter-1.0 \
|
|
--include=Gtk-3.0 \
|
|
--add-include-path=$(builddir) \
|
|
--libtool="$(LIBTOOL)" \
|
|
--library=libst-1.0.la \
|
|
-DST_COMPILATION \
|
|
$(filter-out %-private.h $(st_non_gir_sources), $(addprefix $(srcdir)/,$(st_source_h))) \
|
|
$(addprefix $(srcdir)/,$(st_source_c)) \
|
|
$(srcdir)/st-enum-types.h \
|
|
$(st_cflags) \
|
|
-o $@
|
|
CLEANFILES += St-1.0.gir
|
|
|
|
St-1.0.typelib: St-1.0.gir
|
|
$(AM_V_GEN) $(G_IR_COMPILER) \
|
|
$< -o $@
|
|
|
|
CLEANFILES += St-1.0.typelib
|
|
|
|
Gdm-1.0.gir: $(mutter) $(G_IR_SCANNER) libgdmuser-1.0.la Makefile
|
|
$(AM_V_GEN) $(G_IR_SCANNER) \
|
|
--namespace=Gdm \
|
|
--nsversion=1.0 \
|
|
--warn-all \
|
|
--warn-error \
|
|
--include=GObject-2.0 \
|
|
--include=GdkPixbuf-2.0 \
|
|
--libtool="$(LIBTOOL)" \
|
|
--library=libgdmuser-1.0.la \
|
|
$(filter-out %-private.h, $(addprefix $(srcdir)/,$(gdmuser_source_h))) \
|
|
$(addprefix $(srcdir)/,$(gdmuser_source_c)) \
|
|
$(gdmuser_cflags) \
|
|
-o $@
|
|
CLEANFILES += Gdm-1.0.gir
|
|
|
|
Gdm-1.0.typelib: Gdm-1.0.gir
|
|
$(AM_V_GEN) $(G_IR_COMPILER) Gdm-1.0.gir -o $@
|
|
CLEANFILES += Gdm-1.0.typelib
|
|
|