From c2ae39b8d60407261d1963461087798458b31358 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 22 Aug 2011 20:07:07 -0400 Subject: [PATCH] gyp: -ldl on linux --- node.gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/node.gyp b/node.gyp index defb192f15..e1a45d4407 100644 --- a/node.gyp +++ b/node.gyp @@ -100,6 +100,7 @@ [ 'OS=="linux"', { 'sources': [ 'src/platform_linux.cc' ], 'libraries': [ + '-ldl', '-lutil' # needed for openpty ], }]