diff options
Diffstat (limited to 'plugins/calendar-weather')
-rw-r--r-- | plugins/calendar-weather/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/calendar-weather/Makefile.am | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/plugins/calendar-weather/ChangeLog b/plugins/calendar-weather/ChangeLog index 720760aa52..f6770e1622 100644 --- a/plugins/calendar-weather/ChangeLog +++ b/plugins/calendar-weather/ChangeLog @@ -1,3 +1,8 @@ +2005-06-27 Tor Lillqvist <tml@novell.com> + + * Makefile.am: There is no EVOLUTION_CFLAGS. Use + NO_UNDEFINED. Link with EVOLUTION_CALENDAR_LIBS. + 2005-06-18 Tor Lillqvist <tml@novell.com> * org-gnome-calendar-weather.eplug.xml: Use SOEXT. diff --git a/plugins/calendar-weather/Makefile.am b/plugins/calendar-weather/Makefile.am index 06c45d58d4..598521073b 100644 --- a/plugins/calendar-weather/Makefile.am +++ b/plugins/calendar-weather/Makefile.am @@ -3,7 +3,6 @@ weatherdatadir = $(datadir)/evolution/$(BASE_VERSION)/weather INCLUDES = \ -I$(top_srcdir)/shell \ - $(EVOLUTION_CFLAGS) \ $(EVOLUTION_CALENDAR_CFLAGS) \ $(SOURCE_SEL_CFLAGS) \ -DWEATHER_DATADIR=\""$(weatherdatadir)"\" \ @@ -24,7 +23,10 @@ plugin_DATA = org-gnome-calendar-weather.eplug plugin_LTLIBRARIES = liborg-gnome-calendar-weather.la liborg_gnome_calendar_weather_la_SOURCES = calendar-weather.c -liborg_gnome_calendar_weather_la_LDFLAGS = -module -avoid-version +liborg_gnome_calendar_weather_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) +liborg_gnome_calendar_weather_la_LIBADD = \ + $(top_builddir)/calendar/gui/libevolution-calendar.la \ + $(EVOLUTION_CALENDAR_LIBS) EXTRA_DIST = \ org-gnome-calendar-weather.eplug.xml \ |