mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
make config detection macro more obvious
This commit is contained in:
parent
185d034323
commit
fbaa971ad0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user