From ec37d05d6669039a6e756d303638de3fba7461d5 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 1 Dec 2011 21:02:29 +0100 Subject: [PATCH] Revert "build: compile with -D__DARWIN_64_BIT_INO_T on OS X" This reverts commit 01fbe7bf37909736b4ba99d30c34378f561d6761. __DARWIN_64_BIT_INO_T is a no-op in most cases and might be actively harmful in some others. --- config-unix.mk | 1 - uv.gyp | 3 --- 2 files changed, 4 deletions(-) diff --git a/config-unix.mk b/config-unix.mk index 759be4e0..8fe7254c 100644 --- a/config-unix.mk +++ b/config-unix.mk @@ -50,7 +50,6 @@ endif ifeq (Darwin,$(uname_S)) EV_CONFIG=config_darwin.h EIO_CONFIG=config_darwin.h -CPPFLAGS += -D__DARWIN_64_BIT_INO_T=1 CPPFLAGS += -Isrc/ares/config_darwin LINKFLAGS+=-framework CoreServices OBJS += src/unix/darwin.o diff --git a/uv.gyp b/uv.gyp index 88cee32b..83129b5c 100644 --- a/uv.gyp +++ b/uv.gyp @@ -9,9 +9,6 @@ 'EIO_STACKSIZE=262144' ], 'conditions': [ - ['OS=="mac"', { - 'defines': ['__DARWIN_64_BIT_INO_T=1'], - }], ['OS=="solaris"', { 'cflags': ['-pthreads'], 'ldlags': ['-pthreads'],