diff -r e7caf02f98eb -r c6ce86a2b636 node/node.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/node/node.patch Mon Oct 15 21:20:29 2012 +0200 @@ -0,0 +1,51 @@ +Index: common.gypi +--- common.gypi.orig 2012-07-19 19:01:56.000000000 +0200 ++++ common.gypi 2012-07-22 14:02:09.000000000 +0200 +@@ -153,7 +153,7 @@ + ], + }], + [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { +- 'cflags': [ '-Wall', '-pthread', ], ++ 'cflags': [ '-pthread', ], + 'cflags_cc': [ '-fno-rtti', '-fno-exceptions' ], + 'ldflags': [ '-pthread', '-rdynamic' ], + 'conditions': [ +Index: configure +--- configure.orig 2012-07-19 19:01:56.000000000 +0200 ++++ configure 2012-07-22 14:02:09.000000000 +0200 +@@ -332,9 +332,9 @@ + if options.shared_v8_libpath: + o['libraries'] += ['-L%s' % options.shared_v8_libpath] + if options.shared_v8_libname: +- o['libraries'] += ['-l%s' % options.shared_v8_libname] ++ o['libraries'] += ['-l%s -lexecinfo' % options.shared_v8_libname] + elif options.shared_v8: +- o['libraries'] += ['-lv8'] ++ o['libraries'] += ['-lv8 -lexecinfo'] + if options.shared_v8_includes: + o['include_dirs'] += [options.shared_v8_includes] + +Index: deps/npm/lib/build.js +--- deps/npm/lib/build.js.orig 2012-07-19 19:01:56.000000000 +0200 ++++ deps/npm/lib/build.js 2012-07-22 14:02:09.000000000 +0200 +@@ -166,7 +166,7 @@ + + function linkMans (pkg, folder, parent, gtop, cb) { + if (!pkg.man || !gtop || process.platform === "win32") return cb() +- var manRoot = path.resolve(npm.config.get("prefix"), "share", "man") ++ var manRoot = path.resolve(npm.config.get("prefix"), "man") + asyncMap(pkg.man, function (man, cb) { + if (typeof man !== "string") return cb() + var parseMan = man.match(/(.*)\.([0-9]+)(\.gz)?$/) +Index: tools/install.py +--- tools/install.py.orig 2012-09-11 20:08:07.000000000 +0200 ++++ tools/install.py 2012-09-15 12:03:31.000000000 +0200 +@@ -191,7 +191,7 @@ + 'deps/uv/include/uv-private/uv-unix.h', + 'deps/uv/include/uv-private/uv-win.h'], + 'include/node/uv-private/') +- action(['doc/node.1'], 'share/man/man1/') ++ action(['doc/node.1'], 'man/man1/') + action(['out/Release/node'], 'bin/node') + + # install unconditionally, checking if the platform supports dtrace doesn't