diff options
Diffstat (limited to 'plugins/calendar-http')
-rw-r--r-- | plugins/calendar-http/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/calendar-http/Makefile.am | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/plugins/calendar-http/ChangeLog b/plugins/calendar-http/ChangeLog index 68ebaa7350..76f8e551bb 100644 --- a/plugins/calendar-http/ChangeLog +++ b/plugins/calendar-http/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-http.eplug.xml: Use SOEXT. diff --git a/plugins/calendar-http/Makefile.am b/plugins/calendar-http/Makefile.am index 15e735fb43..69d6ab50a6 100644 --- a/plugins/calendar-http/Makefile.am +++ b/plugins/calendar-http/Makefile.am @@ -1,6 +1,5 @@ INCLUDES = \ -I$(top_srcdir) \ - $(EVOLUTION_CFLAGS) \ $(EVOLUTION_CALENDAR_CFLAGS) \ $(SOURCE_SEL_CFLAGS) @@ -11,7 +10,9 @@ plugin_LTLIBRARIES = liborg-gnome-calendar-http.la liborg_gnome_calendar_http_la_SOURCES = calendar-http.c -liborg_gnome_calendar_http_la_LDFLAGS = -module -avoid-version +liborg_gnome_calendar_http_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) +liborg_gnome_calendar_http_la_LIBADD = \ + $(EVOLUTION_CALENDAR_LIBS) EXTRA_DIST = org-gnome-calendar-http.eplug.xml |