[asterisk-dev] Problem with h323 support

Diego Moreno dmoreno at dit.upm.es
Sat Dec 16 12:54:30 MST 2006


Hi again,
the complete solution to my problem is:
# cd /usr/share/pwlib/lib
# ln -s libpt.so.1.10.0 libpt_linux_x86_r.so
# ln -s libpt.so.1.10.0 libpt_linux_x86_r.so.1
# ln -s libpt.so.1.10.0 libpt_linux_x86_r.so.1.9
# ln -s libpt.so.1.10.0 libpt_linux_x86_r.so.1.9.2
# cd /usr/share/openh323/lib
# ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so
# ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so.1
# ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so.1.17
# ln -s libopenh323.so.1.18.0 libh323_linux_x86_r.so.1.17.3

Also, I needed to change one line in the configure script. Line 25194.
if test -f $f -a ! -L $f; then
to
if test -f $f; then

Then, the code block looks like this:

                OPENH323_SUFFIX=
                files=`ls -l
${OPENH323_LIBDIR}/libh323_${PWLIB_PLATFORM}_*.so*`
                libfile=
                if test -n "$files"; then
                        for f in $files; do
                                #if test -f $f -a ! -L $f; then
                                if test -f $f; then
                                        libfile=`basename $f`
                                        break;
                                fi
                        done
                fi

To finish I ask myself:
is it problem of the Debian distributions or is it problem of Asterisk
configure script and therefore a bug?

Thanks!
Diego.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-dev/attachments/20061216/98674d0e/attachment.htm


More information about the asterisk-dev mailing list