1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Enable NTLM if SSL is available.

This commit is contained in:
hniksic 2005-04-06 13:44:37 -07:00
parent 52ad80309f
commit 441bdb084c
3 changed files with 21 additions and 6 deletions

View File

@ -73,10 +73,15 @@
#undef ENABLE_NLS
/* Define if you want the FTP support for Opie compiled in. */
#define USE_OPIE 1
#define ENABLE_OPIE 1
/* Define if you want the HTTP Digest Authorization compiled in. */
#define USE_DIGEST 1
#define ENABLE_DIGEST 1
/* Define if you want the NTLM authorization support compiled in. */
#ifdef HAVE_SSL
# define ENABLE_NTLM
#endif
/* Define if you want the debug output support compiled in. */
#define ENABLE_DEBUG 1

View File

@ -80,10 +80,15 @@ so, delete this exception statement from your version. */
/* #undef HAVE_NLS */
/* Define if you want the FTP support for Opie compiled in. */
#define USE_OPIE 1
#define ENABLE_OPIE 1
/* Define if you want the NTLM authorization support compiled in. */
#ifdef HAVE_SSL
# define ENABLE_NTLM
#endif
/* Define if you want the HTTP Digest Authorization compiled in. */
#define USE_DIGEST 1
#define ENABLE_DIGEST 1
/* Define if you want the debug output support compiled in. */
#define ENABLE_DEBUG 1

View File

@ -50,10 +50,15 @@
#undef WORDS_BIGENDIAN
/* Define if you want the FTP support for Opie compiled in. */
#define USE_OPIE 1
#define ENABLE_OPIE 1
/* Define if you want the HTTP Digest Authorization compiled in. */
#define USE_DIGEST 1
#define ENABLE_DIGEST 1
/* Define if you want the NTLM authorization support compiled in. */
#ifdef HAVE_SSL
# define ENABLE_NTLM
#endif
/* Define if you want the debug output support compiled in. */
#define ENABLE_DEBUG 1