From 7476e42f563257823e8045504ac7a3a5868009ab Mon Sep 17 00:00:00 2001 From: MASM fan Date: Thu, 11 Dec 2014 02:05:03 +0400 Subject: [PATCH] Add default value for USE_LEVELDB into makefiles --- src/makefile.bsd | 1 + src/makefile.linux-mingw | 1 + src/makefile.mingw | 1 + src/makefile.osx | 3 ++- src/makefile.unix | 1 + 5 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/makefile.bsd b/src/makefile.bsd index 75334d7..29fa837 100644 --- a/src/makefile.bsd +++ b/src/makefile.bsd @@ -3,6 +3,7 @@ # file COPYING or http://www.opensource.org/licenses/mit-license.php. USE_UPNP:=0 +USE_LEVELDB:=0 USE_IPV6:=1 LINK:=$(CXX) diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index ebd2fdc..b9045a7 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -12,6 +12,7 @@ RANLIB=$(TARGET_PLATFORM)-w64-mingw32-ranlib STRIP=$(TARGET_PLATFORM)-w64-mingw32-strip USE_UPNP:=0 +USE_LEVELDB:=0 USE_IPV6:=1 INCLUDEPATHS= \ diff --git a/src/makefile.mingw b/src/makefile.mingw index 35f80ab..cbc2e9d 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -3,6 +3,7 @@ # file COPYING or http://www.opensource.org/licenses/mit-license.php. USE_UPNP:=0 +USE_LEVELDB:=0 USE_IPV6:=1 INCLUDEPATHS= \ diff --git a/src/makefile.osx b/src/makefile.osx index 72821e1..da60667 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -19,7 +19,8 @@ LIBPATHS= \ -L"$(DEPSDIR)/lib" \ -L"$(DEPSDIR)/lib/db48" -USE_UPNP:=1 +USE_UPNP:=0 +USE_LEVELDB:=0 USE_IPV6:=1 LIBS= -dead_strip diff --git a/src/makefile.unix b/src/makefile.unix index 7c3b72a..8da2883 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -3,6 +3,7 @@ # file COPYING or http://www.opensource.org/licenses/mit-license.php. USE_UPNP:=0 +USE_LEVELDB:=0 USE_IPV6:=1 LINK:=$(CXX) -- 1.7.1