diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-05-16 10:46:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-05-16 10:48:49 +0200 |
| commit | ec82d8c99c6dc225d3e55f6a684890142a755443 (patch) | |
| tree | 23cbd691f4455477173d667af5fac1c916c24e6d /src | |
| parent | Merge pull request #6137 (diff) | |
| parent | Fix for correctly including climits on certain platforms {DragonFlyBSD}. (diff) | |
| download | discoin-ec82d8c99c6dc225d3e55f6a684890142a755443.tar.xz discoin-ec82d8c99c6dc225d3e55f6a684890142a755443.zip | |
Merge pull request #6062
ff7fe8b Fix for correctly including climits on certain platforms {DragonFlyBSD}. (sinetek)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 93ad26acf..c0aba3eae 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -14,7 +14,7 @@ $(LIBLEVELDB): $(LIBMEMENV) $(LIBLEVELDB) $(LIBMEMENV): @echo "Building LevelDB ..." && $(MAKE) -C $(@D) $(@F) CXX="$(CXX)" \ CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \ - OPT="$(CXXFLAGS) $(CPPFLAGS)" + OPT="$(CXXFLAGS) $(CPPFLAGS) -D__STDC_LIMIT_MACROS" endif BITCOIN_CONFIG_INCLUDES=-I$(builddir)/config |