You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
node.js v0.6.5
OpenBSD v4.9
Build on OpenBSD 4.9 fails due to execinfo missing.
This can be corrected by installing libexecinfo on OpenBSD:
pkg_add libexecinfo
And patching the wscript (around line 312):
if sys.platform.startswith("freebsd"):
if sys.platform.startswith("freebsd") or sys.platform.startswith("openbsd"):
if not conf.check(lib="execinfo",
Thanks for this quick fix!
I understand the other issue needs to be fixed upstream by V8 but left a reference here to help other OpenBSD users.
I seem to have runtime issues now on OpenBSD v5.0 (I'll create another ticket if I have more details).
events.js:48
throw arguments[1]; // Unhandled 'error' event
^
Error: accept Unknown system errno 53
at errnoException (net.js:616:11)
at TCP.onconnection (net.js:801:24)
node.js v0.6.5
OpenBSD v4.9
Build on OpenBSD 4.9 fails due to execinfo missing.
This can be corrected by installing libexecinfo on OpenBSD:
pkg_add libexecinfo
And patching the wscript (around line 312):
if not conf.check(lib="execinfo",
Note:
The OpenBSD build will also fail on a known V8 bug, see: http://code.google.com/p/v8/issues/detail?id=1445
Regards,
.peter
The text was updated successfully, but these errors were encountered: