| OLD | NEW |
| 1 | 1 |
| 2 /* pngconf.h - machine configurable file for libpng | 2 /* pngconf.h - machine configurable file for libpng |
| 3 * | 3 * |
| 4 * libpng version 1.2.36 - May 7, 2009 | 4 * libpng version 1.2.37 - June 4, 2009 |
| 5 * For conditions of distribution and use, see copyright notice in png.h | 5 * For conditions of distribution and use, see copyright notice in png.h |
| 6 * Copyright (c) 1998-2009 Glenn Randers-Pehrson | 6 * Copyright (c) 1998-2009 Glenn Randers-Pehrson |
| 7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
| 8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 /* Any machine specific code is near the front of this file, so if you | 11 /* Any machine specific code is near the front of this file, so if you |
| 12 * are configuring libpng for a machine, you may want to read the section | 12 * are configuring libpng for a machine, you may want to read the section |
| 13 * starting here down to where it starts to typedef png_color, png_text, | 13 * starting here down to where it starts to typedef png_color, png_text, |
| 14 * and png_info. | 14 * and png_info. |
| (...skipping 1472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1487 */ | 1487 */ |
| 1488 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) | 1488 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) |
| 1489 # undef PNG_ZBUF_SIZE | 1489 # undef PNG_ZBUF_SIZE |
| 1490 # define PNG_ZBUF_SIZE 65536L | 1490 # define PNG_ZBUF_SIZE 65536L |
| 1491 #endif | 1491 #endif |
| 1492 | 1492 |
| 1493 /* Added at libpng-1.2.8 */ | 1493 /* Added at libpng-1.2.8 */ |
| 1494 #endif /* PNG_VERSION_INFO_ONLY */ | 1494 #endif /* PNG_VERSION_INFO_ONLY */ |
| 1495 | 1495 |
| 1496 #endif /* PNGCONF_H */ | 1496 #endif /* PNGCONF_H */ |
| OLD | NEW |