Skip to content
Snippets Groups Projects
Commit a4d646cf authored by Hauke Mehrtens's avatar Hauke Mehrtens
Browse files

curl: add config option for NTLM support


Signed-off-by: default avatarDirk Feytons <dirk.feytons@gmail.com>
Signed-off-by: default avatarHauke Mehrtens <hauke@hauke-m.de>

SVN-Revision: 49183
parent a2b15e6c
No related branches found
No related tags found
No related merge requests found
...@@ -154,4 +154,9 @@ config LIBCURL_VERBOSE ...@@ -154,4 +154,9 @@ config LIBCURL_VERBOSE
bool "Enable verbose error strings" bool "Enable verbose error strings"
default n default n
config LIBCURL_NTLM
bool "Enable NTLM support"
depends LIBCURL_CRYPTO_AUTH && !LIBCURL_NOSSL
default n
endif endif
...@@ -65,7 +65,8 @@ PKG_CONFIG_DEPENDS:= \ ...@@ -65,7 +65,8 @@ PKG_CONFIG_DEPENDS:= \
CONFIG_LIBCURL_THREADED_RESOLVER \ CONFIG_LIBCURL_THREADED_RESOLVER \
CONFIG_LIBCURL_TLS_SRP \ CONFIG_LIBCURL_TLS_SRP \
CONFIG_LIBCURL_UNIX_SOCKETS \ CONFIG_LIBCURL_UNIX_SOCKETS \
CONFIG_LIBCURL_VERBOSE CONFIG_LIBCURL_VERBOSE \
CONFIG_LIBCURL_NTLM
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
...@@ -99,6 +100,7 @@ define Package/libcurl/config ...@@ -99,6 +100,7 @@ define Package/libcurl/config
endef endef
TARGET_CFLAGS += $(FPIC) TARGET_CFLAGS += $(FPIC)
TARGET_CPPFLAGS += $(if $(CONFIG_LIBCURL_NTLM),,-DCURL_DISABLE_NTLM)
CONFIGURE_ARGS += \ CONFIGURE_ARGS += \
--disable-debug \ --disable-debug \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment