| 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.44 - June 26, 2010 | 4 * libpng version 1.2.45 - July 7, 2011 |
| 5 * Copyright (c) 1998-2010 Glenn Randers-Pehrson | 5 * Copyright (c) 1998-2011 Glenn Randers-Pehrson |
| 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
| 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
| 8 * | 8 * |
| 9 * This code is released under the libpng license. | 9 * This code is released under the libpng license. |
| 10 * For conditions of distribution and use, see the disclaimer | 10 * For conditions of distribution and use, see the disclaimer |
| 11 * and license in png.h | 11 * and license in png.h |
| 12 */ | 12 */ |
| 13 | 13 |
| 14 /* Any machine specific code is near the front of this file, so if you | 14 /* Any machine specific code is near the front of this file, so if you |
| 15 * are configuring libpng for a machine, you may want to read the section | 15 * are configuring libpng for a machine, you may want to read the section |
| (...skipping 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1656 */ | 1656 */ |
| 1657 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) | 1657 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) |
| 1658 # undef PNG_ZBUF_SIZE | 1658 # undef PNG_ZBUF_SIZE |
| 1659 # define PNG_ZBUF_SIZE 65536L | 1659 # define PNG_ZBUF_SIZE 65536L |
| 1660 #endif | 1660 #endif |
| 1661 | 1661 |
| 1662 /* Added at libpng-1.2.8 */ | 1662 /* Added at libpng-1.2.8 */ |
| 1663 #endif /* PNG_VERSION_INFO_ONLY */ | 1663 #endif /* PNG_VERSION_INFO_ONLY */ |
| 1664 | 1664 |
| 1665 #endif /* PNGCONF_H */ | 1665 #endif /* PNGCONF_H */ |
| OLD | NEW |