diff options
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2ba662560..52158f119 100644 --- a/configure.ac +++ b/configure.ac @@ -2377,6 +2377,15 @@ case "$LIBIDN" in fi if test "x$idn" != "xyes"; then + dnl check with pkg-config + PKG_CHECK_MODULES(LIBIDN_PC, libidn >= 0.0.0, [idn=yes], [idn=no]) + if test "x$idn" = "xyes"; then + LIBS="$LIBS $LIBIDN_PC_LIBS" + CPPFLAGS="$CPPFLAGS $LIBIDN_PC_CFLAGS" + fi + fi + + if test "x$idn" != "xyes"; then dnl check with default paths idn="yes" AC_CHECK_LIB(idn, idna_to_ascii_lz, , |