0

coturn を Mac にインストールする方法

説明どおりにすべての手順を実行しました

$ ./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

私はcoturnにとってまったく新しいものです。助けてください、何が間違っているのですか

4

1 に答える 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
于 2020-01-14T10:23:11.697 に答える