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 /frontends | |
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 'frontends')
0 files changed, 0 insertions, 0 deletions