diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-04-17 01:09:38 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-04-17 01:09:38 +0800 |
commit | 8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da (patch) | |
tree | ce8454bcd1bee579b4fb0977872e85ed8f411358 /camel/ChangeLog | |
parent | 62e82291e808731ec8d97fffe4528c641d31d939 (diff) | |
download | gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.tar gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.tar.gz gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.tar.bz2 gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.tar.lz gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.tar.xz gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.tar.zst gsoc2013-evolution-8cc3a0e4dc9d3664f7b4e54d03d1c5b1936eb2da.zip |
Remove the EXTRA_GNOME_CFLAGS include.
2001-04-16 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Remove the EXTRA_GNOME_CFLAGS include.
* camel-store.c (camel_mkdir_hier): Convenience function that it
seems a number of camel-store implementations used gal for.
* providers/nntp/camel-nntp-store.c (ensure_news_dir_exists): Lets
not depend on gal for just e_mkdir_hier() - use camel_mkdir_hier()
instead.
* providers/nntp/camel-imap-store.c: Lets not depend on gal for
just e_mkdir_hier() - use camel_mkdir_hier() instead.
* camel-session.c (camel_session_get_storage_path): Don't depend
on e_mkdir_heir() anymore, use the CamelStore version.
* camel-folder-search.h: Removed gal dependency, why was this even
there in the first place?
* providers/imap/camel-imap-folder.c: Don't need gal/util/e-util.h
here, so remove it.
* string-utils.c (strstrcase): New function, well more like old
function brought back to life so we don't have to depend on gal.
* providers/imap/camel-imap-store.c (imap_store_setup_online): Use
strstrcase rather than e_strstrcase so we don't depend on gal.
(get_unread_online): Same here.
* providers/smtp/camel-smtp-transport.c (smtp_helo): Use
strstrcase.
svn path=/trunk/; revision=9383
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r-- | camel/ChangeLog | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index dca89bc6a1..803cd825da 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,36 @@ +2001-04-16 Jeffrey Stedfast <fejj@ximian.com> + + * Makefile.am: Remove the EXTRA_GNOME_CFLAGS include. + + * camel-store.c (camel_mkdir_hier): Convenience function that it + seems a number of camel-store implementations used gal for. + + * providers/nntp/camel-nntp-store.c (ensure_news_dir_exists): Lets + not depend on gal for just e_mkdir_hier() - use camel_mkdir_hier() + instead. + + * providers/nntp/camel-imap-store.c: Lets not depend on gal for + just e_mkdir_hier() - use camel_mkdir_hier() instead. + + * camel-session.c (camel_session_get_storage_path): Don't depend + on e_mkdir_heir() anymore, use the CamelStore version. + + * camel-folder-search.h: Removed gal dependency, why was this even + there in the first place? + + * providers/imap/camel-imap-folder.c: Don't need gal/util/e-util.h + here, so remove it. + + * string-utils.c (strstrcase): New function, well more like old + function brought back to life so we don't have to depend on gal. + + * providers/imap/camel-imap-store.c (imap_store_setup_online): Use + strstrcase rather than e_strstrcase so we don't depend on gal. + (get_unread_online): Same here. + + * providers/smtp/camel-smtp-transport.c (smtp_helo): Use + strstrcase. + 2001-04-15 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.c (header_raw_check_mailing_list): regex |