2008-07-22 Milan Crha <mcrha@redhat.com> ** Fix for bug #544022 * configure.in: Do not redefine DBUS_VERSION define supplied by dbus itself, rather rename our define to FOUND_DBUS_VERSION. * mail/e-searching-tokenizer.c: (dump_trie): Define function only when required. (Compiler warning cleanup.) * shell/e-shell-window-commands.c: (char *authors[]): Break the escape sequence properly (compiler warning cleanup). * plugins/email-custom-header/email-custom-header.c: Compiler warning cleanup. * plugins/mail-notification/Makefile.am: * plugins/mail-notification/mail-notification.c: (send_dbus_message): Do not redefine DBUS_VERSION define, it's supplied by dbus itself. svn path=/trunk/; revision=35819
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 \
|
|
-DFOUND_DBUS_VERSION=$(FOUND_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)
|