summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/libcurl.in10
-rw-r--r--rules/libcurl.make4
2 files changed, 12 insertions, 2 deletions
diff --git a/rules/libcurl.in b/rules/libcurl.in
index c832153af..1955c0c21 100644
--- a/rules/libcurl.in
+++ b/rules/libcurl.in
@@ -39,6 +39,16 @@ config LIBCURL_TFTP
config LIBCURL_FILE
bool "file"
+config LIBCURL_SMTP
+ bool "smtp"
+ help
+ enable smtp support for sending emails
+
+config LIBCURL_VERBOSE
+ bool "verbose messages"
+ help
+ enable verbose messages, helpful for error indication
+
config LIBCURL_SSL
bool "ssl"
diff --git a/rules/libcurl.make b/rules/libcurl.make
index 9d3532502..19bda71ce 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -57,7 +57,7 @@ LIBCURL_AUTOCONF := \
--disable-pop3 \
--disable-imap \
--disable-smb \
- --disable-smtp \
+ --$(call ptx/endis, PTXCONF_LIBCURL_SMTP)-smtp \
--disable-gopher \
--disable-manual \
--enable-libcurl-option \
@@ -65,7 +65,7 @@ LIBCURL_AUTOCONF := \
$(GLOBAL_IPV6_OPTION) \
--disable-versioned-symbols \
--enable-threaded-resolver \
- --disable-verbose \
+ --$(call ptx/endis, PTXCONF_LIBCURL_VERBOSE)-verbose \
--disable-sspi \
--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-crypto-auth \
--disable-ntlm-wb \