Node.js symbol lookup error on Fedora 16

I installed Node.JS on Fedora 16, but when i'm started daemon it's throw error:

sdfnode: symbol lookup error: node: undefined symbol: _ZN2v82V816IdleNotificationEv

To solve the problem I reinstalled from this repository: http://nodejs.tchol.org/, it did not help. How to fix it?

I really suggest following this recommendation when installing node.js on Fedora.

This problem is solved by installing from source.

First download source code from Node.js website and in command line execute this:

./configure make
make
install

You'll need make and a C-compiler, for example gcc.