David Rosenstrauch reported that header files spnegohelp.h and

openssl/objects.h were needed to compile SPNEGO support.
This commit is contained in:
Yang Tse
2008-05-26 03:10:34 +00:00
parent d6f8f16068
commit c57e748107
3 changed files with 15 additions and 1 deletions

View File

@@ -42,6 +42,15 @@
#include "http_negotiate.h"
#include "memory.h"
#ifdef HAVE_SPNEGO
# include <spnegohelp.h>
# if defined(USE_OPENSSL) && !defined(USE_YASSLEMUL)
# include <openssl/objects.h>
# else
# error "Can't compile SPNEGO support without OpenSSL."
# endif
#endif
#define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h>