配置:错误:未找到enet

配置:错误:未找到enet

我正在尝试建立7kaa我的 Ubuntu 机器上的游戏。

为了构建Makefile.am,我运行了./configure,结果的尾部是

checking for gettext... yes
checking for iconv... yes
checking for OPENAL... yes
checking for SDL... yes
checking for ENET... no
checking for enet_initialize in -lenet -lws2_32 -lwinmm... no
checking for enet_initialize in -lenet... no
configure: error: enet not found

我想知道它是什么enet以及如何安装它?它似乎apt无法识别它。

即使设置enable_enetno这里将修复此问题。

enable_enet=no

我仍然很好奇如何实现这个功能以及它有什么作用?

答案1

您可以enet从这里下载:http://enet.bespin.org/Downloads.html

解压下载的文件并从其中运行:

./configure && make && make install

相关内容