aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-11-08 07:47:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-11-08 07:47:08 +0000
commitc688166066d2d34b32ce86b58c03a81fc7e1e190 (patch)
tree537c9e93f69f475e3f93c3cfa2c13936d0954c1f /configure.ac
parent5dcd2710d4198ae4ec196805fb7d23401ba0de83 (diff)
check for and require tld.h to be present before libidn usage is activated
in the build, since libidn 0.3.X didn't have the header and we don't support that old libidn versions anyway. This was mentioned on the list by Jean-Philippe Barrette-LaPierre and in bug report #1062264.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3a01b2a45..091c869b8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -984,7 +984,7 @@ case "$LIBIDN" in
curl_idn_msg="enabled"
dnl different versions of libidn have different setups of these:
AC_CHECK_FUNCS( idn_free idna_strerror tld_strerror)
- AC_CHECK_HEADERS( idn-free.h )
+ AC_CHECK_HEADERS( idn-free.h tld.h )
fi
;;