From d699d815d6acdf18f73788c21f3be5e6611cfecf Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 20 Mar 2011 19:31:58 -0700 Subject: [PATCH] Enhance the -liconv check for OS X. Fixes bug 8018. --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 22672ba5..2b5f0a7b 100644 --- a/configure.ac +++ b/configure.ac @@ -445,8 +445,10 @@ fi AC_SEARCH_LIBS(inet_ntop, resolv) -# Solaris and HP-UX weirdness: -# Search for libiconv_open (not iconv_open) to discover if -liconv is needed! +# For OS X, Solaris, HP-UX, etc.: figure out if -liconv is needed. We'll +# accept either iconv_open or libiconv_open, since some include files map +# the former to the latter. +AC_SEARCH_LIBS(iconv_open, iconv) AC_SEARCH_LIBS(libiconv_open, iconv) AC_MSG_CHECKING([for iconv declaration]) -- 2.34.1