diff options
author | Tim 'mithro' Ansell <mithro@mithis.com> | 2017-11-24 15:34:46 +1100 |
---|---|---|
committer | Tim 'mithro' Ansell <mithro@mithis.com> | 2017-11-25 19:48:26 -0800 |
commit | 34c9fbab5367133fe6e0365068f78762ded70623 (patch) | |
tree | 46c7ad3e406217ebd96a70e0460655b36552585f /libs/minisat/SimpSolver.cc | |
parent | 8d48b47450f5e62a7db1766da57d5736872077a9 (diff) | |
download | yosys-34c9fbab5367133fe6e0365068f78762ded70623.tar.gz yosys-34c9fbab5367133fe6e0365068f78762ded70623.tar.bz2 yosys-34c9fbab5367133fe6e0365068f78762ded70623.zip |
minisat: Only define __STDC_XXX_MACROS if not already defined.
Replace;
#define __STDC_LIMIT_MACROS
#define __STDC_FORMAT_MACROS
With
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
#endif
This fixes a compile warning if you are defining these macros in your
CXXFLAGS (as some distros do).
Diffstat (limited to 'libs/minisat/SimpSolver.cc')
-rw-r--r-- | libs/minisat/SimpSolver.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/minisat/SimpSolver.cc b/libs/minisat/SimpSolver.cc index fd5774e0e..7348a905d 100644 --- a/libs/minisat/SimpSolver.cc +++ b/libs/minisat/SimpSolver.cc @@ -1,5 +1,9 @@ +#ifndef __STDC_FORMAT_MACROS #define __STDC_FORMAT_MACROS +#endif +#ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS +#endif /***********************************************************************************[SimpSolver.cc] Copyright (c) 2006, Niklas Een, Niklas Sorensson Copyright (c) 2007-2010, Niklas Sorensson |