From 65ac47759f7f1995645d31360219bc2760333974 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 8 Dec 2020 19:06:09 +0100 Subject: [PATCH] [skip ci] avoid to let Coin redefine several HAVE_ macros --- src/FCConfig.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/FCConfig.h b/src/FCConfig.h index ac1c29e012..aeb476b061 100644 --- a/src/FCConfig.h +++ b/src/FCConfig.h @@ -170,6 +170,17 @@ typedef __int64 int64_t; typedef unsigned __int64 uint64_t; #endif +/* avoid to redefine the HAVE_* in Coin's inttypes.h file */ +#define COIN_CONFIGURE_BUILD +/* The header file. */ +#define HAVE_INTTYPES_H 1 +/* The header file. */ +#define HAVE_STDINT_H 1 +/* The header file. */ +#define HAVE_SYS_TYPES_H 1 +/* The header file. */ +#define HAVE_STDDEF_H 1 + #endif