diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-06-29 16:03:45 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-06-29 23:17:30 +0200 |
commit | e6749055d65398315fd77f5b5b8234c5552ac2d3 (patch) | |
tree | 500b2c80cdbe7c4f5e765dbca544a862b2fa7adc /configure.ac | |
parent | 8208dd3b221e42db962ca40c603465e48ad513b3 (diff) | |
download | curl-e6749055d65398315fd77f5b5b8234c5552ac2d3.tar.gz |
configure: disable libidn by default
For security reasons, until there is a fix.
Bug: http://curl.haxx.se/mail/lib-2015-06/0143.html
Reported-by: Gustavo Grieco, Feist Josselin
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index accb03889..a2407da68 100644 --- a/configure.ac +++ b/configure.ac @@ -2659,9 +2659,9 @@ case "$OPT_IDN" in ;; default) dnl configure option not specified - want_idn="yes" + want_idn="no" want_idn_path="default" - AC_MSG_RESULT([(assumed) yes]) + AC_MSG_RESULT([(assumed) no]) ;; yes) dnl --with-libidn option used without path |