diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-10-10 05:01:52 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-10-10 05:01:52 +0800 |
commit | 18407a6beb9cce3a4e79eefd39acd83795501dfa (patch) | |
tree | e2ebf302b9abd1d974616ba7dcadcc41e3ab9b79 | |
parent | c09b8d79826135939ad0d614a9d307897b383ed1 (diff) | |
download | gsoc2013-evolution-18407a6beb9cce3a4e79eefd39acd83795501dfa.tar.gz gsoc2013-evolution-18407a6beb9cce3a4e79eefd39acd83795501dfa.tar.zst gsoc2013-evolution-18407a6beb9cce3a4e79eefd39acd83795501dfa.zip |
INCLUDE path fixes for changes made to libical build.
2003-10-09 Jeffrey Stedfast <fejj@ximian.com>
* calendar/Makefile.am: INCLUDE path fixes for changes made to
libical build.
svn path=/trunk/; revision=22843
-rw-r--r-- | a11y/ChangeLog | 21 | ||||
-rw-r--r-- | a11y/calendar/Makefile.am | 12 |
2 files changed, 24 insertions, 9 deletions
diff --git a/a11y/ChangeLog b/a11y/ChangeLog index 5e433f5314..ff406f373e 100644 --- a/a11y/ChangeLog +++ b/a11y/ChangeLog @@ -1,12 +1,27 @@ +2003-10-09 Jeffrey Stedfast <fejj@ximian.com> + + * calendar/Makefile.am: INCLUDE path fixes for changes made to + libical build. + 2003-08-27 Bolian Yin <bolian.yin@sun.com> - * Makefile.am: add widgets directory; move calendar idl stuff to calendar directory; stop make a single shared lib for whole a11y stuff. + * Makefile.am: add widgets directory; move calendar idl stuff to + calendar directory; stop make a single shared lib for whole a11y + stuff. + * ea-factory.h: make factory macros available to GOBJECT + * calendar/Makefile.am: add calendar idl stuff + * calendar/ea-cal-view-event.c: add atkcomponent interface. - * calendar/ea-gnome-calendar.c (ea_gcal_switch_view_cb): add details for "children_changed". + + * calendar/ea-gnome-calendar.c (ea_gcal_switch_view_cb): add + details for "children_changed". + * new widgets directory for widgets a11y stuff, new files are: - widgets/Makefile.am, widgets/ea-calendar-item.c, widgets/ea-calendar-item.h, widgets/ea-widgets.c, widgets/ea-widgets.h + widgets/Makefile.am, widgets/ea-calendar-item.c, + widgets/ea-calendar-item.h, widgets/ea-widgets.c, + widgets/ea-widgets.h 2003-08-20 Rodrigo Moya <rodrigo@ximian.com> diff --git a/a11y/calendar/Makefile.am b/a11y/calendar/Makefile.am index 2c3a26f2ba..dc08c333b8 100644 --- a/a11y/calendar/Makefile.am +++ b/a11y/calendar/Makefile.am @@ -1,5 +1,5 @@ # Calendar IDL files - + CALENDAR_IDLS = $(top_srcdir)/calendar/idl/evolution-calendar.idl SHELL_IDLS = \ $(top_srcdir)/shell/Evolution-Activity.idl \ @@ -16,7 +16,7 @@ SHELL_IDLS = \ $(top_srcdir)/shell/Evolution-Wizard.idl \ $(top_srcdir)/shell/Evolution-common.idl \ $(top_srcdir)/shell/Evolution.idl - + CALENDAR_IDL_GENERATED_H = evolution-calendar.h CALENDAR_IDL_GENERATED_C = \ evolution-calendar-common.c \ @@ -28,11 +28,11 @@ SHELL_IDL_GENERATED_C = \ Evolution-common.c \ Evolution-skels.c \ Evolution-stubs.c - + $(CALENDAR_IDL_GENERATED_H): $(CALENDAR_IDLS) $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \ $(top_srcdir)/calendar/idl/evolution-calendar.idl - + $(SHELL_IDL_GENERATED_H): $(SHELL_IDLS) $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \ $(top_srcdir)/shell/Evolution.idl @@ -40,7 +40,7 @@ $(SHELL_IDL_GENERATED_H): $(SHELL_IDLS) IDL_GENERATED = $(SHELL_IDL_GENERATED_H) $(CALENDAR_IDL_GENERATED_H) BUILT_SOURCES = $(IDL_GENERATED) CLEANFILES = $(BUILT_SOURCES) $(CALENDAR_IDL_GENERATED_C) $(SHELL_IDL_GENERATED_C) - + noinst_LTLIBRARIES = libevolution-calendar-a11y.la INCLUDES = \ @@ -48,7 +48,7 @@ INCLUDES = \ -I$(top_srcdir)/shell \ -I$(top_srcdir)/calendar \ -I$(top_srcdir)/calendar/cal-client \ - -I$(top_srcdir)/libical/src/libical \ + -I$(top_srcdir)/libical/src \ -I$(top_srcdir)/calendar/gui \ -I$(top_srcdir)/widgets \ -I$(top_srcdir)/a11y \ |