aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/sendmail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-12-18 05:46:44 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-12-18 05:46:44 +0800
commita84f11d6bd217de89e73b1880546a3af48cfd9c8 (patch)
tree12820d1698832a64f7f7859224ee0b89f18b9e35 /camel/providers/sendmail
parent5c90cbb6e1a5a1f4cf59c7554e273aec4f52fa22 (diff)
downloadgsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.tar
gsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.tar.gz
gsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.tar.bz2
gsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.tar.lz
gsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.tar.xz
gsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.tar.zst
gsoc2013-evolution-a84f11d6bd217de89e73b1880546a3af48cfd9c8.zip
Replace calls to g_string_sprintfa() with g_string_append_printf() since
2002-12-17 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-utils.c: Replace calls to g_string_sprintfa() with g_string_append_printf() since the former seems to have been deprecated. * providers/imap/camel-imap-search.c: Same. * providers/imap/camel-imap-folder.c: Here too. * providers/local/camel-mbox-summary.c: And here. * providers/local/camel-local-summary.c: Replace g_string_sprintf() with g_string_printf(). * camel-data-cache.c (data_cache_expire): Replace g_string_sprintf() with g_string_printf(). * camel-url.c: Replace calls to g_string_sprintfa() with g_string_append_printf() since the former seems to have been deprecated. * camel-service.c: Same. * camel-mime-utils.c: Here too. svn path=/trunk/; revision=19154
Diffstat (limited to 'camel/providers/sendmail')
-rw-r--r--camel/providers/sendmail/Makefile.am23
1 files changed, 12 insertions, 11 deletions
diff --git a/camel/providers/sendmail/Makefile.am b/camel/providers/sendmail/Makefile.am
index 57834b9853..35632d318b 100644
--- a/camel/providers/sendmail/Makefile.am
+++ b/camel/providers/sendmail/Makefile.am
@@ -5,17 +5,18 @@ libcamelsendmailincludedir = $(includedir)/camel
camel_provider_LTLIBRARIES = libcamelsendmail.la
camel_provider_DATA = libcamelsendmail.urls
-INCLUDES = \
- -I.. \
- -I$(srcdir)/.. \
- -I$(srcdir)/../../.. \
- -I$(includedir) \
- -I$(top_srcdir)/intl \
- -I$(top_srcdir)/camel \
- $(CAMEL_CFLAGS) \
- $(GNOME_INCLUDEDIR) \
- $(GTK_INCLUDEDIR) \
- -DG_LOG_DOMAIN=\"camel-sendmail-provider\"
+INCLUDES = \
+ -I.. \
+ -I$(srcdir)/.. \
+ -I$(srcdir)/../../.. \
+ -I$(includedir) \
+ -I$(top_srcdir)/intl \
+ -I$(top_srcdir)/camel \
+ $(CAMEL_CFLAGS) \
+ $(GNOME_INCLUDEDIR) \
+ $(GTK_INCLUDEDIR) \
+ -DG_LOG_DOMAIN=\"camel-sendmail-provider\" \
+ -DG_DISABLE_DEPRECATED
libcamelsendmail_la_SOURCES = \
camel-sendmail-provider.c \