From fbaa971ad00873a1684aef538aa6edbbed7e55ed Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 13 Nov 2019 17:54:06 +0000 Subject: make config detection macro more obvious --- utils/config.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/utils/config.h b/utils/config.h index a87f19b53..d0ec21c53 100644 --- a/utils/config.h +++ b/utils/config.h @@ -49,7 +49,13 @@ char *strcasestr(const char *haystack, const char *needle); /* Although these platforms might have strftime or strptime they * appear not to support the time_t seconds format specifier. */ -#if (defined(_WIN32) || defined(__riscos__) || defined(__HAIKU__) || defined(__BEOS__) || defined(__amigaos4__) || defined(__AMIGA__) || defined(__MINT__)) +#if (defined(_WIN32) || \ + defined(__riscos__) || \ + defined(__HAIKU__) || \ + defined(__BEOS__) || \ + defined(__amigaos4__) || \ + defined(__AMIGA__) || \ + defined(__MINT__)) #undef HAVE_STRPTIME #undef HAVE_STRFTIME #else -- cgit v1.2.3