В Втр, 30/01/2007 в 17:21 -0800, Jerry Richards пишет: > When I run > "/util/sipo-options --contact=sip:[EMAIL PROTECTED] --from=sip:[EMAIL > PROTECTED] > 8.72.130 sip:[EMAIL PROTECTED]", I get the following runtime error: > > sup_port(0x804b5f8):epoll_create(): function not implemented > > and the "contact" field does not show up in the SIP OPTIONS request on the > network. > > Thanks.
Well, actually it's a problem I've met also. the reason is the following: uclibc have no epoll.h but it has a dummy function for epoll_create. So sofia testing code just checks for epoll_create and thinks it exists. To quickly create workaround you should comment #HAVE_EPOLL and #HAVE_EPOLL_CREATE in config.h after running ./configure. Please note that you should comment them in file "config.h" not in "configure" itelf. Or change define to #undef. This bug appeared after 1.12.0. I suppose it should be fixed, but have no idea how. There really can be library with epoll_create but without epoll.h. About IPV6 you have the same problem, you need to comment HAVE_IPV6 in "config.h", not in configure. It's strange why V6 fails in you case, if you'll send us your "config.log" file this problem can be investigated. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Sofia-sip-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel
