diff options
author | Dan Winship <danw@src.gnome.org> | 2001-04-27 02:21:32 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-04-27 02:21:32 +0800 |
commit | 18af050c0507105544f5a83cd529a8b7a4264bdd (patch) | |
tree | 8a6dfbc597e0a30cd7659b2012d07208a1f360bc /camel/providers | |
parent | 678e848710c297d8219a878970aa5471e5b3ec7d (diff) | |
download | gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.tar gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.tar.gz gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.tar.bz2 gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.tar.lz gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.tar.xz gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.tar.zst gsoc2013-evolution-18af050c0507105544f5a83cd529a8b7a4264bdd.zip |
Remove UNICODE_CFLAGS (and some other stuff that's redundant with
* Makefile.am (INCLUDES): Remove UNICODE_CFLAGS (and some other
stuff that's redundant with EXTRA_GNOME_CFLAGS)
(libcamel_la_LIBADD): Replace UNICODE_LIBS with GAL_LIBS.
* camel-search-private.c:
* camel-pgp-context.c:
* camel-mime-utils.c: Use gunicode interfaces rather than
libunicode.
* camel-charset-map.c: Use gunicode rather than libunicode. (The
charmap-regen code still depends on libunicode though.)
* camel-mime-filter-charset.h:
* tests/message/test2.c (convert): Use iconv rather than
unicode_iconv.
* providers/smtp/Makefile.am (libcamelsmtp_la_LIBADD):
* providers/pop3/Makefile.am (libcamelpop3_la_LIBADD):
* providers/local/Makefile.am (libcamellocal_la_LIBADD): Remove
UNICODE_LIBS.
* camel.c (camel_init): Remove call to unicode_init.
* camel-mime-parser.c: Remove unused unicode.h include.
svn path=/trunk/; revision=9585
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/Makefile.am | 2 | ||||
-rw-r--r-- | camel/providers/pop3/Makefile.am | 2 | ||||
-rw-r--r-- | camel/providers/smtp/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/camel/providers/local/Makefile.am b/camel/providers/local/Makefile.am index 9130f62f81..9c6b353186 100644 --- a/camel/providers/local/Makefile.am +++ b/camel/providers/local/Makefile.am @@ -53,6 +53,6 @@ noinst_HEADERS = \ libcamellocal_la_LDFLAGS = -version-info 0:0:0 -libcamellocal_la_LIBADD = $(top_builddir)/e-util/libeutil.la $(top_builddir)/libibex/libibex.la $(UNICODE_LIBS) +libcamellocal_la_LIBADD = $(top_builddir)/e-util/libeutil.la $(top_builddir)/libibex/libibex.la EXTRA_DIST = libcamellocal.urls diff --git a/camel/providers/pop3/Makefile.am b/camel/providers/pop3/Makefile.am index 57fb938d89..476e3d3189 100644 --- a/camel/providers/pop3/Makefile.am +++ b/camel/providers/pop3/Makefile.am @@ -32,6 +32,6 @@ libcamelpop3include_HEADERS = \ libcamelpop3_la_LDFLAGS = $(KRB4_LDFLAGS) -version-info 0:0:0 -libcamelpop3_la_LIBADD = $(top_builddir)/e-util/libeutil.la $(UNICODE_LIBS) +libcamelpop3_la_LIBADD = $(top_builddir)/e-util/libeutil.la EXTRA_DIST = libcamelpop3.urls diff --git a/camel/providers/smtp/Makefile.am b/camel/providers/smtp/Makefile.am index 45e1d77f8c..74597f57f5 100644 --- a/camel/providers/smtp/Makefile.am +++ b/camel/providers/smtp/Makefile.am @@ -31,6 +31,6 @@ libcamelsmtpinclude_HEADERS = \ libcamelsmtp_la_LDFLAGS = -version-info 0:0:0 -libcamelsmtp_la_LIBADD = $(top_builddir)/e-util/libeutil.la $(UNICODE_LIBS) +libcamelsmtp_la_LIBADD = $(top_builddir)/e-util/libeutil.la EXTRA_DIST = libcamelsmtp.urls |