I was implementing my text chat program using libjingle library. I just removed the third_party SUBDIR in the Makefile, so those voice related parts wouldn't be compiled and thus the configure process perform well.However, when it came to "make", i got errors like this:
/bin/sh ../../../libtool --silent --tag=CXX --mode=link g++ -g -O2 - o login login-login_main.o login-xmppsocket.o login-xmppthread.o login-xmpppump.o login-xmppauth.o ../../../talk/xmpp/ libcricketxmpp.la ../../../talk/xmllite/libcricketxmllite.la ../../../ talk/base/libcricketbase.la -lexpat -lpthread -lssl -lcrypto ../../../talk/base/.libs/libcricketbase.a(openssladapter.o)(.text +0xbe): In function `socket_read(bio_st*, char*, int)': /usr/include/c++/3.2.2/bits/stl_list.h:430: undefined reference to `BIO_clear_flags' ../../../talk/base/.libs/libcricketbase.a(openssladapter.o)(.text +0x11e): In function `socket_read(bio_st*, char*, int)': /home/chat/libjingle-0.4.0/talk/base/openssladapter.cc:179: undefined reference to `BIO_set_flags' ../../../talk/base/.libs/libcricketbase.a(openssladapter.o)(.text +0x15e): In function `socket_write(bio_st*, char const*, int)': /home/chat/libjingle-0.4.0/talk/base/openssladapter.cc:188: undefined reference to `BIO_clear_flags' ../../../talk/base/.libs/libcricketbase.a(openssladapter.o)(.text +0x1aa):/home/chat/libjingle-0.4.0/talk/base/openssladapter.cc:193: undefined reference to `BIO_set_flags' collect2: ld returned 1 exit status this error message came when the "login" example was being compiled. I have checked that the 'BIO_clear_flags' and 'BIO_set_flags' were defined in the file '/usr/include/openssl/bio.h'. So my question is, any idea to make it correct? Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "google-talk-open" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-talk-open?hl=en -~----------~----~----~----~------~----~------~--~---
