如何将Coturn安装到Mac

问题描述 投票:0回答:1

如何在Mac上安装Coturn

我按照所述完成了所有步骤

$ ./configure
$ make
$ make install

https://github.com/coturn/coturn/wiki/CoturnConfig

但是收到此错误

In file included from src/apps/oauth/oauth.c:41:
src/apps/common/apputils.h:34:10: fatal error: 'event2/event.h' file not found
#include <event2/event.h>
         ^~~~~~~~~~~~~~~~
1 error generated.
In file included from src/apps/common/apputils.c:34:
src/apps/common/apputils.h:34:10: fatal error: 'event2/event.h' file not found
#include <event2/event.h>
         ^~~~~~~~~~~~~~~~
1 error generated.
src/apps/common/ns_turn_utils.c:35:10: fatal error: 'event2/http.h' file not found
#include <event2/http.h>
         ^~~~~~~~~~~~~~~
1 error generated.
make: *** [bin/turnutils_oauth] Error 1

我对土星完全陌生,请帮助,我在做什么错

macos coturn
1个回答
0
投票

我找到了一个解决方案,对于MacO,您必须在安装Coturn之前安装第三方库

$ wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
As root, build and install the library with the usual:

$ tar xvfz libevent-2.0.21-stable.tar.gz
$ cd libevent-2.0.21-stable
$ ./configure
$ make
$ make install
© www.soinside.com 2019 - 2024. All rights reserved.