diff options
author | David Trowbridge <David.Trowbridge@Colorado.edu> | 2005-01-07 19:37:16 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2005-01-07 19:37:16 +0800 |
commit | 3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1 (patch) | |
tree | 003f8eb9be438cb546232fa71e2203458fbab487 | |
parent | fa51bd7c909b379c986a67dbcd4dea16c009e106 (diff) | |
download | gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.tar gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.tar.gz gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.tar.bz2 gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.tar.lz gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.tar.xz gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.tar.zst gsoc2013-evolution-3f5d6c197ccdc6d24ffc3c43bda1e3c6f39ec1e1.zip |
added calendar-weather plugin to build.
2005-01-07 David Trowbridge <David.Trowbridge@Colorado.edu>
* configure.in: added calendar-weather plugin to build.
2005-01-06 JP Rosevear <jpr@novell.com>
svn path=/trunk/; revision=28267
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-01-07 David Trowbridge <David.Trowbridge@Colorado.edu> + + * configure.in: added calendar-weather plugin to build. + 2005-01-06 JP Rosevear <jpr@novell.com> * data/Makefile.am: add some uninstall rules for local data diff --git a/configure.in b/configure.in index 25e340070f..5cfeae8796 100644 --- a/configure.in +++ b/configure.in @@ -1232,6 +1232,11 @@ else AC_MSG_ERROR(no) fi +dnl -- e-d-s weather datadir +dataserver_datadir=`pkg-config --variable=privdatadir evolution-data-server-1.2` +weatherdatadir="$dataserver_datadir/weather" +AC_SUBST(weatherdatadir) + dnl --- evolution-test flags EVO_SET_COMPILE_FLAGS(EVOLUTION_TEST, libgnome-2.0 libgnomeui-2.0 libbonobo-2.0 libbonoboui-2.0 >= $BONOBOUI_REQUIRED) @@ -1333,7 +1338,7 @@ AC_SUBST_FILE(EVO_PLUGIN_RULE) AC_ARG_ENABLE(plugins, [ --enable-plugins=[no/all/list] Enable plugins.],enable_plugins="$enableval",enable_plugins=base) dnl Add any new plugins here -plugins_base="calendar-http groupwise-account-setup plugin-manager backup-restore" +plugins_base="calendar-http calendar-weather groupwise-account-setup plugin-manager backup-restore" plugins_all="bbdb subject-thread save-attachments prefer-plain save-calendar select-one-source copy-tool mail-to-meeting mail-to-task folder-unsubscribe mark-calendar-offline audio-inline mailing-list-actions groupwise-account-setup itip-formatter backup-restore itip-formatter" case x"$enable_plugins" in @@ -1535,6 +1540,7 @@ mail/default/nl/Makefile mail/importers/Makefile plugins/Makefile plugins/calendar-http/Makefile +plugins/calendar-weather/Makefile plugins/plugin-manager/Makefile plugins/bbdb/Makefile plugins/audio-inline/Makefile |