Enhance the -liconv check for OS X. Fixes bug 8018.
authorWayne Davison <wayned@samba.org>
Mon, 21 Mar 2011 02:31:58 +0000 (19:31 -0700)
committerWayne Davison <wayned@samba.org>
Mon, 21 Mar 2011 02:33:28 +0000 (19:33 -0700)
configure.ac

index 22672ba..2b5f0a7 100644 (file)
@@ -445,8 +445,10 @@ fi
 
 AC_SEARCH_LIBS(inet_ntop, resolv)
 
 
 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])
 AC_SEARCH_LIBS(libiconv_open, iconv)
 
 AC_MSG_CHECKING([for iconv declaration])