Hi again,<br>the complete solution to my problem is:<br># cd /usr/share/pwlib/lib<br># ln -s libpt.so.1.10.0 libpt_linux_x86_r.so<br># ln -s libpt.so.1.10.0
libpt_linux_x86_r.so.1<br># ln -s libpt.so.1.10.0 libpt_linux_x86_r.so.1.9<br># ln -s libpt.so.1.10.0 libpt_linux_x86_r.so.1.9.2<br># cd /usr/share/openh323/lib<br># ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so<br>
# ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so.1<br># ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so.1.17<br># ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so.1.17.3<br><br>Also, I needed to change one line in the configure script. Line 25194.
<br>if test -f $f -a ! -L $f; then<br>to<br>if test -f $f; then<br><br>Then, the code block looks like this:<br><br> OPENH323_SUFFIX=<br> files=`ls -l ${OPENH323_LIBDIR}/libh323_${PWLIB_PLATFORM}_*.so*`
<br> libfile=<br> if test -n "$files"; then<br> for f in $files; do<br> #if test -f $f -a ! -L $f; then <br> if test -f $f; then
<br> libfile=`basename $f`<br> break;<br> fi<br> done<br> fi<br><br>To finish I ask myself:
<br>is it problem of the Debian distributions or is it problem of Asterisk configure script and therefore a bug?<br><br>Thanks!<br>Diego.<br>