From d30210ba7b8a4699360994bed4eef5749f43f1ee Mon Sep 17 00:00:00 2001 From: Alex Chung Date: Wed, 5 Jun 2013 01:01:12 -0400 Subject: [PATCH] Defined OS_MACOSX for OSX build. Was causing LevelDB build fail. --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index fe051edb3..b2fd16849 100644 --- a/SConstruct +++ b/SConstruct @@ -117,6 +117,7 @@ if (int(GCC_VERSION[0]) > 4 or (int(GCC_VERSION[0]) == 4 and int(GCC_VERSION[1]) if OSX: env.Append(LINKFLAGS = ['-L/usr/local/opt/openssl/lib']) env.Append(CXXFLAGS = ['-I/usr/local/opt/openssl/include']) + env.Append(CXXFLAGS = ['-DOS_MACOSX']) RIPPLE_SRCS = [ 'src/cpp/database/sqlite3.c',