2005-07-13 Tor Lillqvist <tml@novell.com> * calendar-weather/calendar-weather.c (e_calendar_weather_migrate): Don't return a value from a void funtion. * groupwise-account-setup/org-gnome-gw-account-setup.eplug.xml: Use SOEXT. * groupwise-features/Makefile.am (NO_UNDEFINED_REQUIRED_LIBS): As the code does use functions from libevolution-mail, link with it. But OK, let's do it (at build time) only on Win32, then. * mail-account-disable/Makefile.am (INCLUDES): Remove duplicated line. (LDFLAGS): Use NO_UNDEFINED. (LIBADD): Link with the required libraries, but let's do it only on Win32. * mail-account-disable/org-gnome-mail-account-disable.eplug.xml: Use SOEXT. * proxy/Makefile.am (LIBADD): Link with libeutil. * proxy-login/Makefile.am (LIBADD): Link with libeutil. Link with libevolution-mail on Win32 only. (Have I understood correctly that it isn't considered a good idea on Unix to link plugins at link-time with libevolution-mail?) * proxy-login/org-gnome-proxy-login.eplug.xml: Use SOEXT. svn path=/trunk/; revision=29753
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
if OS_WIN32
|
|
NO_UNDEFINED_REQUIRED_LIBS = $(top_builddir)/mail/libevolution-mail.la
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/widgets \
|
|
-I$(top_srcdir)/camel \
|
|
$(EVOLUTION_MAIL_CFLAGS) \
|
|
$(EVOLUTION_CALENDAR_CFLAGS) \
|
|
$(EVOLUTION_ADDRESSBOOK_CFLAGS) \
|
|
$(CAMEL_GROUPWISE_CFLAGS) \
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\"
|
|
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
plugin_DATA = org-gnome-groupwise-features.eplug org-gnome-compose-send-options.xml
|
|
plugin_LTLIBRARIES = liborg-gnome-groupwise-features.la
|
|
|
|
liborg_gnome_groupwise_features_la_SOURCES = \
|
|
share-folder-common.c \
|
|
share-folder.c \
|
|
share-folder.h \
|
|
install-shared.c \
|
|
send-options.c \
|
|
mail-send-options.c \
|
|
mail-send-options.h \
|
|
status-track.c \
|
|
addressbook-groupwise.c \
|
|
junk-mail-settings.c \
|
|
junk-settings.c \
|
|
junk-settings.h
|
|
|
|
liborg_gnome_groupwise_features_la_LIBADD= \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/calendar/gui/libevolution-calendar.la \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.la \
|
|
$(top_builddir)/filter/libfilter.la \
|
|
$(NO_UNDEFINED_REQUIRED_LIBS) \
|
|
$(EVOLUTION_CALENDAR_LIBS) \
|
|
$(EVOLUTION_MAIL_LIBS) \
|
|
$(CAMEL_GROUPWISE_LIBS)
|
|
|
|
|
|
|
|
liborg_gnome_groupwise_features_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED)
|
|
|
|
glade_DATA =properties.glade junk-settings.glade
|
|
|
|
error_DATA = org-gnome-shared-folder.errors.xml
|
|
errordir = $(privdatadir)/errors
|
|
|
|
EXTRA_DIST = \
|
|
$(error_DATA) \
|
|
$(glade_DATA) \
|
|
org-gnome-compose-send-options.xml \
|
|
org-gnome-groupwise-features.eplug.xml
|
|
CLEANFILES = $(BUILT_SOURCES)
|