node.js ./configure 警告

node.js ./configure 警告

我正在尝试安装 node.js,当我运行 ./configer 时,我得到了这个警告列表。我不知道我在 Debian 安装中遗漏了哪些库/包(Bubba2 服务器上的 Linux 2.6.32.6 ppc GNU/Linux)

Checking for gnutls >= 2.5.0             : fail 

--- libeio --- 
Checking for pread(2) and pwrite(2)      : fail 
Checking for sync_file_range(2)          : fail 
--- libev ---
Checking for header sys/inotify.h        : not found 
Checking for header port.h               : not found 
Checking for header sys/event.h          : not found 
Checking for function kqueue             : not found 
Checking for header sys/eventfd.h        : not found 

你能告诉我需要安装什么吗?

答案1

为了满足 gnutls 依赖性,您将需要 libgnutls-dev。libeio 和 libev 都仅依赖于 C 库(据我所知),因此您将需要 libc6-dev 包(我相信它应该由 libgnutls-dev 引入)。希望对您有所帮助。

相关内容