Bueller? Is this a lib of some kind? Google and lists bring up nada, this is from ast cvs head latest on Fedora Core 3. /usr/bin/ld: cannot find -lidn collect2: ld returned 1 exit status make[1]: *** [app_curl.so] Error 1 make[1]: Leaving directory `/usr/src/asterisk/apps' make: *** [subdirs] Error 1 [root@zoot asterisk]# uname -a Linux zoot 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686 i686 i386 GNU/Linux
On Jan 27, 2005, at 15:12, Matt Schulte wrote:> Bueller? Is this a lib of some kind? Google and lists bring up nada, > this is from ast cvs head latest on Fedora Core 3. > > /usr/bin/ld: cannot find -lidn > collect2: ld returned 1 exit status > make[1]: *** [app_curl.so] Error 1 > make[1]: Leaving directory `/usr/src/asterisk/apps' > make: *** [subdirs] Error 1On my Apple Cube that I use for Asterisk, "yum info libidn" shows this: Name : libidn Arch : ppc Version: 0.5.4 Release: 1 Size : 569.34 kB Group : System/Libraries Repo : Yellow Dog Linux 4.0 Base Summary: Internationalized Domain Name support library Description: GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. So you're probably missing the libidn and libidn-devel packages. jens
On Thursday 27 January 2005 14:12, Matt Schulte wrote:> Bueller? Is this a lib of some kind? Google and lists bring up nada, > this is from ast cvs head latest on Fedora Core 3.Google brings up many pages for libidn. The very first hit being where you can download it. B
Matt Schulte wrote:> Bueller? Is this a lib of some kind? Google and lists bring up nada, > this is from ast cvs head latest on Fedora Core 3. > > /usr/bin/ld: cannot find -lidn > collect2: ld returned 1 exit status > make[1]: *** [app_curl.so] Error 1 > make[1]: Leaving directory `/usr/src/asterisk/apps' > make: *** [subdirs] Error 1 > [root@zoot asterisk]# uname -a > Linux zoot 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686 i686 > i386 GNU/LinuxLooks like asterisk is using cURL: CURLLIBS=$(shell curl-config --libs) ifneq (${CURLLIBS},) APPS+=app_curl.so And cURL uses libidn: http://curl.netmirror.org/libs.html So you likely need: http://mirrors.kernel.org/fedora/core/3/i386/os/Fedora/RPMS/libidn-0.5.6-1.i386.rpm Regards, -- Jason Becker Director & CEO Coalescent Systems Inc. 403.244.8089 www.coalescentsystems.ca
try this sudo yum install libidn-devel.i386 On Jan 27, 2005, at 9:12 AM, Matt Schulte wrote:> Bueller? Is this a lib of some kind? Google and lists bring up nada, > this is from ast cvs head latest on Fedora Core 3. > > /usr/bin/ld: cannot find -lidn > collect2: ld returned 1 exit status > make[1]: *** [app_curl.so] Error 1 > make[1]: Leaving directory `/usr/src/asterisk/apps' > make: *** [subdirs] Error 1 > [root@zoot asterisk]# uname -a > Linux zoot 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686 i686 > i386 GNU/Linux