diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-16 21:09:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-16 21:09:44 +0200 |
commit | 0f2dc5c5e17679be85a1bb7ee7a5ec6a1dbac8b9 (patch) | |
tree | 814c4500fcdf4fde5a6a984e584df76744db118b /thirdparty/libpng/pngconf.h | |
parent | 57bdddce02370af3d13e6edc583afdc17264147d (diff) |
libpng: Update to upstream 1.6.38
Diffstat (limited to 'thirdparty/libpng/pngconf.h')
-rw-r--r-- | thirdparty/libpng/pngconf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/thirdparty/libpng/pngconf.h b/thirdparty/libpng/pngconf.h index 927a769dbe..89d28f83a0 100644 --- a/thirdparty/libpng/pngconf.h +++ b/thirdparty/libpng/pngconf.h @@ -1,9 +1,9 @@ /* pngconf.h - machine-configurable file for libpng * - * libpng version 1.6.37 + * libpng version 1.6.38 * - * Copyright (c) 2018-2019 Cosmin Truta + * Copyright (c) 2018-2022 Cosmin Truta * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson * Copyright (c) 1996-1997 Andreas Dilger * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. @@ -180,8 +180,8 @@ * compiler-specific macros to the values required to change the calling * conventions of the various functions. */ -#if defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\ - defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +#if defined(_WIN32) || defined(__WIN32__) || defined(__NT__) || \ + defined(__CYGWIN__) /* Windows system (DOS doesn't support DLLs). Includes builds under Cygwin or * MinGW on any architecture currently supported by Windows. Also includes * Watcom builds but these need special treatment because they are not |