diff options
author | Dan Winship <danw@src.gnome.org> | 2003-10-23 22:42:45 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-10-23 22:42:45 +0800 |
commit | 66682382391f6f7df955f65a5343f4f0416ff26e (patch) | |
tree | 3b9b2489017fe8419ed207a10f25731e8aad88b1 | |
parent | 5fa4b831a798a0aabfdbd46903dbed9b1bde7262 (diff) | |
download | gsoc2013-evolution-66682382391f6f7df955f65a5343f4f0416ff26e.tar.gz gsoc2013-evolution-66682382391f6f7df955f65a5343f4f0416ff26e.tar.zst gsoc2013-evolution-66682382391f6f7df955f65a5343f4f0416ff26e.zip |
install all of the headers that ical.h now #includes
* src/libical/Makefile.am (libical_evolutioninclude_HEADERS):
install all of the headers that ical.h now #includes
svn path=/trunk/; revision=23037
-rw-r--r-- | libical/ChangeLog | 5 | ||||
-rw-r--r-- | libical/src/libical/Makefile.am | 32 |
2 files changed, 34 insertions, 3 deletions
diff --git a/libical/ChangeLog b/libical/ChangeLog index d8655dd243..e8029491be 100644 --- a/libical/ChangeLog +++ b/libical/ChangeLog @@ -1,3 +1,8 @@ +2003-10-23 Dan Winship <danw@ximian.com> + + * src/libical/Makefile.am (libical_evolutioninclude_HEADERS): + install all of the headers that ical.h now #includes + 2003-10-15 Rodrigo Moya <rodrigo@ximian.com> * src/libicalss/icalssyacc.y: re-added missing header. diff --git a/libical/src/libical/Makefile.am b/libical/src/libical/Makefile.am index 302c32a6a0..262a4f97d7 100644 --- a/libical/src/libical/Makefile.am +++ b/libical/src/libical/Makefile.am @@ -2,7 +2,7 @@ # FILE: Makefile.am # CREATOR: eric # -# $Id: Makefile.am,v 1.41 2003/10/21 18:28:29 ettore Exp $ +# $Id: Makefile.am,v 1.42 2003/10/23 14:42:45 danw Exp $ # # # (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org @@ -36,7 +36,7 @@ endif privlib_LTLIBRARIES = libical-evolution.la $(cxx_lib) -CPPFLAGS = -DPACKAGE_DATA_DIR=\""$(privdatadir)"\" +AM_CPPFLAGS = -DPACKAGE_DATA_DIR=\""$(privdatadir)"\" # CFLAGS = -g @@ -115,7 +115,33 @@ endif libical_evolutionincludedir = $(privincludedir)/libical -libical_evolutioninclude_HEADERS = ical.h icalmemory.h icalerror.h $(cxx_headers) +libical_evolutioninclude_HEADERS = \ + ical.h \ + icalarray.h \ + icalattach.h \ + icalcomponent.h \ + icalderivedparameter.h \ + icalderivedproperty.h \ + icalderivedvalue.h \ + icalduration.h \ + icalenums.h \ + icalerror.h \ + icallangbind.h \ + icalmemory.h \ + icalmime.h \ + icalparameter.h \ + icalparser.h \ + icalperiod.h \ + icalproperty.h \ + icalrecur.h \ + icalrestriction.h \ + icaltime.h \ + icaltimezone.h \ + icaltypes.h \ + icalvalue.h \ + pvl.h \ + sspm.h \ + $(cxx_headers) # ORDERING OF HEADERS IS SIGNIFICANT. Don't change this ordering. It # is required to make the combined header ical.h properly |