diff options
-rw-r--r-- | camel/ChangeLog | 9 | ||||
-rw-r--r-- | camel/providers/nntp/Makefile.am | 12 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-folder.c | 1 |
3 files changed, 17 insertions, 5 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index fe2b2df415..352f194126 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,12 @@ +2000-08-09 Ettore Perazzoli <ettore@helixcode.com> + + * providers/nntp/camel-nntp-folder.c + (nntp_folder_set_message_flags): Get rid of an unused variable. + + * providers/nntp/Makefile.am (INCLUDES): Fix includes so that we + don't use installed headers anymore. [I copied this over from the + IMAP provider, that does not seem to have this problem.] + 2000-08-09 Not Zed <NotZed@HelixCode.com> * camel-folder-search.c (camel_folder_search_execute_expression): 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)); |