在centos9上编译opensip各个模块遇到的问题【centos9编译opensips终结篇】

mmgeoip   需要安装libmaxminddb  编译安装
https://github.com/maxmind/libmaxminddb.git
git submodule update --init --recursive
dnf install pandoc
mkdir build
cd build 
cmake ..
make
make install 

httpd模块错误   解决方案  dnf install libmicrohttpd-devel -y
  
aaa_diameter模块  报错缺少:freeDiameter/extension.h
解决:
dnf install lksctp-tools-devel -y
dnf install libgcrypt* -y
git clone https://github.com/FreeDiameter/FreeDiameter.git
cd FreeDiameter
mkdir build
cd build
cmake ..
make
sudo make install



auth_jwt 解决 dnf install libjwt* -y

cachedb_redis  
dnf install hiredis-devel -y

carrierroute
dnf install libconfuse* -y

jabber
yum install expat-devel


git clone https://github.com/launchdarkly/c-client.git
cd c-client
mkdir build
cd build
cmake ..
make 
make install

lua   致命错误:lua.h 致命错误:libmemcached/memcached.h
dnf install lua-devel -y
dnf install libmemcached* -y

rabbitmq
dnf install librabbitmq-devel

proto_ipsec
dnf install libmnl-devel -y

没有解决
sngtc
http2d 
launch_darkly
aaa_radius
osps

你可能感兴趣的:(VOIP那些事,opensips)