0
点赞
收藏
分享

微信扫一扫

PHP 基础语法详解

zhongjh 2024-10-10 阅读 26

1.下载 PTLib 源代码及安装

git clone https://github.com/willamowius/ptlib.git
cd ptlib
./configure --prefix=/usr
make
sudo make install

2.使用包管理器安装Flex

#对于基于 Debian 的系统(如 Ubuntu)
sudo apt-get update
sudo apt-get install flex
#对于基于 Red Hat 的系统(如 CentOS)
sudo yum install flex

3.下载 H323Plus 源代码及安装

git clone https://github.com/willamowius/h323plus.git
cd h323plus
./configure --prefix=/usr
make
sudo make install

4.安装mod_h323

#进入freeswitch源码下的目录
cd src/mod/endpoints/mod_h323
make && make install
举报

相关推荐

0 条评论