2008-01-09 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #492702 * configure.in: Just disable the dbus message part of mail notification if dbus isn't there. Also remove new-mail-notify plugin. svn path=/trunk/; revision=34784
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(EVOLUTION_MAIL_CFLAGS) \
|
|
$(LIBNOTIFY_CFLAGS)
|
|
|
|
if ENABLE_DBUS
|
|
INCLUDES += -DDBUS_API_SUBJECT_TO_CHANGE=1 \
|
|
-DDBUS_VERSION=$(DBUS_VERSION) \
|
|
$(NMN_CFLAGS)
|
|
endif
|
|
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
plugin_DATA = org-gnome-mail-notification.eplug
|
|
plugin_LTLIBRARIES = liborg-gnome-mail-notification.la
|
|
|
|
liborg_gnome_mail_notification_la_SOURCES = mail-notification.c
|
|
liborg_gnome_mail_notification_la_LDFLAGS = \
|
|
-module -avoid-version \
|
|
$(LIBNOTIFY_LIBS)
|
|
|
|
if ENABLE_DBUS
|
|
liborg_gnome_mail_notification_la_LDFLAGS += $(NMN_LIBS)
|
|
endif
|
|
|
|
schemadir = $(GCONF_SCHEMA_FILE_DIR)
|
|
schema_in_files = apps-evolution-mail-notification.schemas.in
|
|
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
|
|
|
|
@INTLTOOL_SCHEMAS_RULE@
|
|
|
|
install-data-local:
|
|
if test -z "$(DESTDIR)" ; then \
|
|
for p in $(schema_DATA) ; do \
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p; \
|
|
done \
|
|
fi
|
|
|
|
BUILT_SOURCES = $(plugin_DATA)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
DISTCLEANFILES = $(schema_DATA)
|
|
|
|
EXTRA_DIST = \
|
|
org-gnome-mail-notification.eplug.xml \
|
|
$(schema_in_files)
|