From 2f18cf5ecf59ba8feafb22bccdaf5e7057c1b9c3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 18 Sep 2011 18:34:40 -0700 Subject: [PATCH] Fix gyp build --- uv.gyp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/uv.gyp b/uv.gyp index 777aed3a..84c8c86e 100644 --- a/uv.gyp +++ b/uv.gyp @@ -194,7 +194,10 @@ 'include_dirs': [ 'src/ares/config_darwin' ], 'sources': [ 'src/unix/darwin.c' ], 'direct_dependent_settings': { - 'libraries': [ '-framework CoreServices' ], + 'libraries': [ + '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', + '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', + ], }, 'defines': [ 'EV_CONFIG_H="config_darwin.h"', @@ -261,6 +264,7 @@ 'test/test-tcp-bind-error.c', 'test/test-tcp-bind6-error.c', 'test/test-tcp-close.c', + 'test/test-tcp-write-error.c', 'test/test-tcp-writealot.c', 'test/test-threadpool.c', 'test/test-timer-again.c',