This module posts an alert to the first EShellWindow when starting offline, and also posts an alert when the network connection drops. We get frequent questions on the mailing list from users not realizing Evolution is starting in offline mode, so this is meant to help address that confusion.
38 lines
557 B
Makefile
38 lines
557 B
Makefile
if ENABLE_MONO
|
|
MONO_DIR = plugin-mono
|
|
endif
|
|
|
|
if ENABLE_PYTHON
|
|
PYTHON_DIR = plugin-python
|
|
endif
|
|
|
|
if ENABLE_NETWORK_MANAGER
|
|
NETWORK_MANAGER_DIR = network-manager
|
|
endif
|
|
|
|
if ENABLE_CONNMAN
|
|
CONNMAN_DIR = connman
|
|
endif
|
|
|
|
if ENABLE_WINDOWS_SENS
|
|
WINDOWS_SENS_DIR = windows-sens
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
addressbook \
|
|
calendar \
|
|
mail \
|
|
composer-autosave \
|
|
mailto-handler \
|
|
offline-alert \
|
|
plugin-lib \
|
|
plugin-manager \
|
|
startup-wizard \
|
|
$(MONO_DIR) \
|
|
$(PYTHON_DIR) \
|
|
$(NETWORK_MANAGER_DIR) \
|
|
$(WINDOWS_SENS_DIR) \
|
|
$(CONNMAN_DIR)
|
|
|
|
-include $(top_srcdir)/git.mk
|