1.下载 PTLib 源代码及安装
bash
git clone https://github.com/willamowius/ptlib.git
cd ptlib
./configure --prefix=/usr
make
sudo make install
2.使用包管理器安装Flex
bash
#对于基于 Debian 的系统(如 Ubuntu)
sudo apt-get update
sudo apt-get install flex
#对于基于 Red Hat 的系统(如 CentOS)
sudo yum install flex
3.下载 H323Plus 源代码及安装
bash
git clone https://github.com/willamowius/h323plus.git
cd h323plus
./configure --prefix=/usr
make
sudo make install
4.安装mod_h323
bash
#进入freeswitch源码下的目录
cd src/mod/endpoints/mod_h323
make && make install