aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/nntp
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-08-09 13:21:12 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-08-09 13:21:12 +0800
commit0b5dd5d2edb22ee196c41c27537906835295ca4d (patch)
tree387609825e675c6bb648ea761c9570cd657e7f9b /camel/providers/nntp
parent3c36db8abbc66ef4306c98dac6e9592bca036bd4 (diff)
downloadgsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.tar
gsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.tar.gz
gsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.tar.bz2
gsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.tar.lz
gsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.tar.xz
gsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.tar.zst
gsoc2013-evolution-0b5dd5d2edb22ee196c41c27537906835295ca4d.zip
Fix the NNTP provider's Makefile.am so that it does not use installed
Camel headers before the source ones. Also, get rid of an unused variable. svn path=/trunk/; revision=4631
Diffstat (limited to 'camel/providers/nntp')
-rw-r--r--camel/providers/nntp/Makefile.am12
-rw-r--r--camel/providers/nntp/camel-nntp-folder.c1
2 files changed, 8 insertions, 5 deletions
diff --git a/camel/providers/nntp/Makefile.am b/camel/providers/nntp/Makefile.am
index 6e3a4272a6..247dffbfd4 100644
--- a/camel/providers/nntp/Makefile.am
+++ b/camel/providers/nntp/Makefile.am
@@ -7,11 +7,15 @@ providerdir = $(pkglibdir)/camel-providers/$(VERSION)
provider_LTLIBRARIES = libcamelnntp.la
provider_DATA = libcamelnntp.urls
-INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \
- -I$(top_srcdir) \
+INCLUDES = -I.. \
+ -I$(srcdir)/.. \
+ -I$(top_srcdir)/camel \
-I$(top_srcdir)/intl \
- $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel \
- -I$(srcdir)/../mbox \
+ -I$(top_srcdir)/libibex \
+ -I$(top_srcdir)/e-util \
+ -I$(top_srcdir) \
+ -I$(includedir) \
+ $(GTK_INCLUDEDIR) \
-DG_LOG_DOMAIN=\"camel-nntp-provider\"
libcamelnntp_la_SOURCES = \
diff --git a/camel/providers/nntp/camel-nntp-folder.c b/camel/providers/nntp/camel-nntp-folder.c
index b1d0a919d5..dae572136e 100644
--- a/camel/providers/nntp/camel-nntp-folder.c
+++ b/camel/providers/nntp/camel-nntp-folder.c
@@ -188,7 +188,6 @@ nntp_folder_set_message_flags (CamelFolder *folder, const char *uid,
info->flags = set;
if (set & CAMEL_MESSAGE_SEEN) {
- CamelNNTPStore *store;
int article_num;
CamelNNTPStore *nntp_store = CAMEL_NNTP_STORE (camel_folder_get_parent_store (folder));