diff options
| author | fcicq <[email protected]> | 2013-05-05 13:32:30 +0800 |
|---|---|---|
| committer | fcicq <[email protected]> | 2013-07-17 16:50:44 +0800 |
| commit | eb8397a03e7f68db1c4505c865516979c0e2e29f (patch) | |
| tree | d5915ed866246c44c14c64a11db52d70b66d8432 /src | |
| parent | Merge pull request #2825 from sipa/incompatkey (diff) | |
| download | discoin-eb8397a03e7f68db1c4505c865516979c0e2e29f.tar.xz discoin-eb8397a03e7f68db1c4505c865516979c0e2e29f.zip | |
Disable variadic template support in C++11
Diffstat (limited to 'src')
| -rw-r--r-- | src/makefile.unix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index f17de05cb..ed05491b6 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -13,7 +13,7 @@ USE_IPV6:=1 LINK:=$(CXX) -DEFS=-DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 +DEFS=-DBOOST_SPIRIT_THREADSAFE -DBOOST_NO_CXX11_VARIADIC_TEMPLATES -D_FILE_OFFSET_BITS=64 DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH)) LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH)) |