[svn-commits] tilghman: branch 1.8 r320573 - in /branches/1.8: configure configure.ac

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon May 23 11:19:48 CDT 2011


Author: tilghman
Date: Mon May 23 11:19:32 2011
New Revision: 320573

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=320573
Log:
GNU libiconv uses symbol "libiconv_open" instead of "iconv_open".

(closes issue #19344)
 Reported by: rohanl
 Patches: 
       iconv-check.patch uploaded by rohanl (license 1284)

Modified:
    branches/1.8/configure
    branches/1.8/configure.ac

Modified: branches/1.8/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/configure.ac?view=diff&rev=320573&r1=320572&r2=320573
==============================================================================
--- branches/1.8/configure.ac (original)
+++ branches/1.8/configure.ac Mon May 23 11:19:32 2011
@@ -1120,6 +1120,8 @@
 fi
 
 AST_EXT_LIB_CHECK([ICONV], [iconv], [iconv_open], [iconv.h])
+# GNU libiconv #define's iconv_open to libiconv_open, so we need to search for that symbol
+AST_EXT_LIB_CHECK([ICONV], [iconv], [libiconv_open], [iconv.h])
 # Some versions of Linux package iconv in glibc
 AST_EXT_LIB_CHECK([ICONV], [c], [iconv_close], [iconv.h])
 




More information about the svn-commits mailing list