diff options
| author | sinetek <[email protected]> | 2015-04-25 22:01:59 +0700 |
|---|---|---|
| committer | sinetek <[email protected]> | 2015-04-25 22:07:32 +0700 |
| commit | ff7fe8b19e76c69471a2c56f829ebcbcdc54223e (patch) | |
| tree | 831ab2561b1a5257d2b4e519a391dc98851222d2 /src | |
| parent | Merge pull request #5467 (diff) | |
| download | discoin-ff7fe8b19e76c69471a2c56f829ebcbcdc54223e.tar.xz discoin-ff7fe8b19e76c69471a2c56f829ebcbcdc54223e.zip | |
Fix for correctly including climits on certain platforms {DragonFlyBSD}.
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 37184b628..aed47db4d 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 |