From: Sebastien V. <seb...@tu...> - 2011-01-07 07:40:40
|
Hi Youness, Thanks for the patch! It has been included in SVN trunk repository (revision 183). Regards, -- Seb Le 07/01/2011 05:55, Youness Alaoui a écrit : > Hi, > > I'm currently on Fedora 14 and turnserver 0.4 does not build correctly on it. > The error is at link time and it gives me : > > /usr/bin/ld: tls_peer.o: undefined reference to symbol 'ERR_reason_error_string' > /usr/bin/ld: note: 'ERR_reason_error_string' is defined in DSO > /lib/libcrypto.so.10 so try adding it to the linker command line > /lib/libcrypto.so.10: could not read symbols: Invalid operation > collect2: ld returned 1 exit status > > After a bit of googling, I found this explanation here : > http://fedoraproject.org/wiki/UnderstandingDSOLinkChange > > To fix it, I just had to add > AC_CHECK_LIB(crypto, ERR_reason_error_string,,[echo -e "\tPlease install > libssl-dev";exit]) > in the configure.ac, right after > AC_CHECK_LIB(ssl, SSL_new,,[echo -e "\tPlease install libssl-dev";exit]) > > This way, it will link with -lcrypto > Let me know if you want an actual patch to apply or this one-line change is fine. > > Thanks for patching it for the next version! > Youness. > > ------------------------------------------------------------------------------ > Gaining the trust of online customers is vital for the success of any company > that requires sensitive data to be transmitted over the Web. Learn how to > best implement a security strategy that keeps consumers' information secure > and instills the confidence they need to proceed with transactions. > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > Turnserver-devel mailing list > Tur...@li... > https://lists.sourceforge.net/lists/listinfo/turnserver-devel > |