Don't include system include dir.
authorJeffrey Stedfast <fejj@ximian.com>
Sat, 17 Mar 2001 22:13:19 +0000 (22:13 +0000)
committerJeffrey Stedfast <fejj@src.gnome.org>
Sat, 17 Mar 2001 22:13:19 +0000 (22:13 +0000)
2001-03-17  Jeffrey Stedfast <fejj@ximian.com>

* Makefile.am: Don't include system include dir.

* camel.c: Use quotes around the nss.h include so it doesn't try
to use the systen nss.h file.

* camel-tcp-stream-ssl.c: Same here.

camel/ChangeLog
camel/Makefile.am
camel/camel-tcp-stream-ssl.c
camel/camel.c

index b143222..91dfe72 100644 (file)
@@ -1,3 +1,12 @@
+2001-03-17  Jeffrey Stedfast <fejj@ximian.com>
+
+       * Makefile.am: Don't include system include dir.
+
+       * camel.c: Use quotes around the nss.h include so it doesn't try
+       to use the systen nss.h file.
+
+       * camel-tcp-stream-ssl.c: Same here.
+
 2001-03-17  Not Zed  <NotZed@Ximian.com>
 
        * providers/local/camel-maildir-summary.c (maildir_summary_sync): 
index 8c77f7f..1b99bf9 100644 (file)
@@ -7,7 +7,7 @@ providerdir = $(libdir)/evolution/camel-providers/$(VERSION)
 
 lib_LTLIBRARIES = libcamel.la
 
-INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir)  \
+INCLUDES = -I.. -I$(srcdir)/..                          \
        -I$(top_srcdir)/intl                     \
        -I$(top_srcdir)/e-util                   \
        $(GLIB_CFLAGS)                           \
index 8aa4080..708c58e 100644 (file)
@@ -37,7 +37,7 @@
 #include <prio.h>
 #include <prerror.h>
 #include <prerr.h>
-#include <nss.h>
+#include "nss.h"    /* Don't use <> here or it will include the system nss.h instead */
 #include <ssl.h>
 
 static CamelTcpStreamClass *parent_class = NULL;
@@ -335,7 +335,6 @@ ssl_bad_cert (void *data, PRFileDesc *sockfd)
        CamelService *service;
        char *prompt, *cert_str;
        gpointer accept;
-       PRUint32 len;
        
        g_return_val_if_fail (data != NULL, SECFailure);
        g_return_val_if_fail (CAMEL_IS_SERVICE (data), SECFailure);
index ba70162..8233e98 100644 (file)
@@ -29,7 +29,7 @@
 #ifdef HAVE_NSS
 #include <nspr.h>
 #include <prthread.h>
-#include <nss.h>
+#include "nss.h"      /* Don't use <> here or it will include the system nss.h instead */
 #include <ssl.h>
 #endif /* HAVE_NSS */