diff options
author | Rodney Dawes <dobey@novell.com> | 2004-08-13 22:39:19 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-08-13 22:39:19 +0800 |
commit | ed76fc7724286390412032884d86034a9282ea8a (patch) | |
tree | dba66f3733f905105ee97b3380a86ad0e0adcdc4 /camel/camel-sasl-gssapi.c | |
parent | b4a903bda1fd2e1840dd14ed9b383d7af0d212ae (diff) | |
download | gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.gz gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.tar.zst gsoc2013-evolution-ed76fc7724286390412032884d86034a9282ea8a.zip |
Handle et/comm_err.h as well as the normal comm_err.h
2004-08-13 Rodney Dawes <dobey@novell.com>
* camel-sasl-gssapi.c: Handle et/comm_err.h as well as the
normal comm_err.h
svn path=/trunk/; revision=26911
Diffstat (limited to 'camel/camel-sasl-gssapi.c')
-rw-r--r-- | camel/camel-sasl-gssapi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/camel-sasl-gssapi.c b/camel/camel-sasl-gssapi.c index c32a3583a2..60619e7fec 100644 --- a/camel/camel-sasl-gssapi.c +++ b/camel/camel-sasl-gssapi.c @@ -28,7 +28,11 @@ #ifdef HAVE_KRB5 #include <string.h> +#ifdef HAVE_ET_COM_ERR_H +#include <et/com_err.h> +#else #include <com_err.h> +#endif #ifdef HAVE_MIT_KRB5 #include <gssapi/gssapi.h> #include <gssapi/gssapi_generic.h> |