编译H323plus

 

H323plus

参考文献《 Simple H323Plus/OpenH323 Tutorial

1.       h323plus-v1_21_0.tar.gz ptlib-2.4.5.tar 分别解压到 ~/h323plus ~/ptlib 中。

2.       Cd ~/ptlib

./configure

Make

Make bothdepend

Make bothnoshared

3.       Cd ~/h323plus

./configure

Make bothdepend

Make bothnoshared

4.       Tar –zxvf oh323tut-1.1-1.tar.gz

将目录中的 .cxx .h 中的 BOOL 修改为 PBoolean ,在 vi 命令下用 :%s/BOOL/PBoolean/g 命令替换。

如果环境变量不正确,设置相应环境变量,如下所示:

export PWLIBDIR=~/ptlib

export OPENH323DIR=~/openh323

make bothdepend

make bothnoshared

*.o 文件和可执行文件都在 obj_linux_x86(release 版本 ) and obj_linux_x86_d(debug 版本 ) 下。可执行文件为 oh323tut

5.       下载 simple-v1_21_0.tar.gz

tar zxf simple-v1_21_0.tar.gz

cd simple

修改 Makefile ,将 OPENH323DIR=$(CURRENTDIR)/../../ 修改为 OPENH323DIR=~/h323plus(h323plus 的安装目录 )

Make

obj_linux_x86 目录下生成可执行文件 simph323

6.       测试

拷贝一个 wav 文件到 oh323tut 的同一目录下,执行

./oh323tut -f audio.wav -n -u 320

打开另一个终端,执行

./simph323 -n -u 321 [email protected]:1820

此时会出现一个错误:

./simph323: error while loading shared libraries: libh323_linux_x86_.so.1.21-beta0: cannot open shared object file: No such file or directory.

File simph323 查看动态链接库,发现

libh323_linux_x86_.so.1.21-beta0 => not found

simple 目录下, make bothdepend; make bothnoshared; 解决此问题,同时生产两个目录: obj_linux_x86 obj_linux_x86_d, obj_linux_x86_d 目录下有 simph323 二进制文件,执行

./simph323 -n -u 321 [email protected]:1820

你可能感兴趣的:(linux,object,File,makefile,终端,X86)