diff options
author | Seth Alves <alves@src.gnome.org> | 2000-06-07 05:56:20 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-06-07 05:56:20 +0800 |
commit | c219c79496fca669af1ae093a660a1ce4d81a682 (patch) | |
tree | f93a2842d0914f396b5a2872ed48536cbfec1f91 /wombat | |
parent | a8b296282e5f93562c85b00b11d006b0eb7f1653 (diff) | |
download | gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.tar gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.tar.gz gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.tar.bz2 gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.tar.lz gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.tar.xz gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.tar.zst gsoc2013-evolution-c219c79496fca669af1ae093a660a1ce4d81a682.zip |
fixed a bunch of problems use libical instead of libversit
* cal-util/icalendar.c, icalendar-save.c: fixed a bunch of problems
* cal-util/calobj.c (ical_object_find_in_string): use libical
instead of libversit
(ical_object_to_string): same
(dump_icalobject): prints the contents of an icalobject for debugging
* gui/Makefile.am (LINK_FLAGS): link libical.a instead of libical.la
so we don't have to modify the build system of the released libical
* cal-client/Makefile.am (client_test_LDADD): same
* cal-util/Makefile.am (icalendar_test_LDADD): same
svn path=/trunk/; revision=3446
Diffstat (limited to 'wombat')
-rw-r--r-- | wombat/Makefile.am | 2 | ||||
-rw-r--r-- | wombat/wombat.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/wombat/Makefile.am b/wombat/Makefile.am index d9494c978b..900c6283c0 100644 --- a/wombat/Makefile.am +++ b/wombat/Makefile.am @@ -24,7 +24,7 @@ wombat_LDADD = \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ $(top_builddir)/addressbook/ename/libename.la \ $(top_builddir)/calendar/pcs/libpcs.a \ - $(top_builddir)/libical/src/libical/libical.la \ + $(top_builddir)/libical/src/libical/libical.a \ $(top_builddir)/calendar/cal-util/libcal-util.la \ $(top_builddir)/libversit/libversit.la \ $(top_builddir)/e-util/libeutil.la \ diff --git a/wombat/wombat.c b/wombat/wombat.c index 4eb5a39878..0d5b8b7a01 100644 --- a/wombat/wombat.c +++ b/wombat/wombat.c @@ -269,7 +269,9 @@ main (int argc, char **argv) setup_pcs (argc, argv); setup_config (argc, argv); - /*g_log_set_always_fatal ((GLogLevelFlags) 0xFFFF);*/ + /*g_log_set_always_fatal (G_LOG_LEVEL_ERROR | + G_LOG_LEVEL_CRITICAL | + G_LOG_LEVEL_WARNING);*/ bonobo_main (); |