Custom Query (2195 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (79 - 81 of 2195)

Ticket Resolution Summary Owner Reporter
#92 fixed Undefined OpenSSL/ALSA symbols when running Python bennylp bennylp
Description

When the configure script detects the availability of OpenSSL and ALSA libraries, TLS and ALSA support will be included with the library.

But unfortunately this causes undefined symbol error when running Python application, for example:

python pjsua_app.py
 Traceback (most recent call last):
   File "pjsua_app.py", line 8, in ?
     import py_pjsua
 ImportError: /usr/lib/python2.4/site-packages/py_pjsua.so: undefined symbol: 
 snd_pcm_close

Thanks Matthias Laur for the report.

#93 fixed Python application blocks in sys.stdin.readline() because C module running on different thread is calling a blocking OS function bennylp bennylp
Description

On Linux (or at least my Linux), pjsua_app.py application will block forever on sys.stdin.readline(), and somehow this is related to the other thread calling py_pjsua.handle_events() (if this is commented, the keyboard input will function properly).

#94 fixed Bug in level adjustment calculation in conference bridge bennylp bennylp
Description

Bug in conference.c at line 1731. The code should be:

if (itemp >= 0) level += itemp;
else            level -= itemp;

Thanks frank wiersma for the fix.

Note: See TracQuery for help on using queries.