From 70cd4ab27df2bfd3fe86a9c8211084666bf84393 Mon Sep 17 00:00:00 2001 From: Brian Cox Date: Sat, 28 Sep 2019 19:24:08 -0700 Subject: [PATCH] macOS build fix --- src/cryptlib/config.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/cryptlib/config.h b/src/cryptlib/config.h index 69a5825..8bca8a7 100644 --- a/src/cryptlib/config.h +++ b/src/cryptlib/config.h @@ -1,8 +1,12 @@ #ifndef CONFIG_H #define CONFIG_H -#ifdef HAVE_CONFIG_H -#include +#if HAVE_CONFIG_H +# include +#endif + +#if HAVE_STDINT_H +# include #endif // define this if you want the library to throw exceptions when things go wrong