Javascript

node.js ./configure 警告

  • May 24, 2010

我正在嘗試安裝 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 

你能告訴我我需要安裝什麼嗎?

為了滿足 gnutls 的依賴,你需要 libgnutls-dev。libeio 和 libev 都僅依賴於 C 庫(AFAIK),因此您需要 libc6-dev 包(我相信應該由 libgnutls-dev 引入)。希望有幫助。

引用自:https://serverfault.com/questions/144551