Changeset 358
- Timestamp:
- 01/27/07 15:06:51 (2 years ago)
- Files:
-
- trunk/lib/Makefile (modified) (1 diff)
- trunk/lib/libpng-12/Makefile (modified) (1 diff)
- trunk/lib/libpng-12/pngconf.h (modified) (8 diffs)
- trunk/lib/zlib/Makefile (modified) (1 diff)
- trunk/lib/zlib/zconf.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/Makefile
r262 r358 1 SUBDIRS=cc3_ilp jpeg-6b lua51 1 SUBDIRS=cc3_ilp jpeg-6b lua51 zlib libpng-12 2 2 3 3 # Build rules trunk/lib/libpng-12/Makefile
r356 r358 7 7 INCLUDES = png.h pngconf.h 8 8 9 LIBS = zlib9 LIBS += zlib 10 10 11 11 trunk/lib/libpng-12/pngconf.h
r355 r358 90 90 91 91 #ifndef PNG_ZBUF_SIZE 92 # define PNG_ZBUF_SIZE 819292 # define PNG_ZBUF_SIZE 2048 93 93 #endif 94 94 … … 107 107 /* Enabled by default in 1.2.0. You can disable this if you don't need to 108 108 support PNGs that are embedded in MNG datastreams */ 109 #define PNG_NO_MNG_FEATURES 109 110 #if !defined(PNG_1_0_X) && !defined(PNG_NO_MNG_FEATURES) 110 111 # ifndef PNG_MNG_FEATURES_SUPPORTED … … 113 114 #endif 114 115 116 #define PNG_NO_FLOATING_POINT_SUPPORTED 115 117 #ifndef PNG_NO_FLOATING_POINT_SUPPORTED 116 118 # ifndef PNG_FLOATING_POINT_SUPPORTED … … 125 127 * libpng thus makes sure to check any memory allocation to verify it 126 128 * will fit into memory. 129 */ 127 130 #define PNG_MAX_MALLOC_64K 128 */129 131 #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K) 130 132 # define PNG_MAX_MALLOC_64K … … 532 534 #if defined(PNG_READ_SUPPORTED) 533 535 536 #define PNG_READ_TRANSFORMS_NOT_SUPPORTED 534 537 #if !defined(PNG_READ_TRANSFORMS_NOT_SUPPORTED) && \ 535 538 !defined(PNG_NO_READ_TRANSFORMS) … … 620 623 #if defined(PNG_WRITE_SUPPORTED) 621 624 625 #define PNG_WRITE_TRANSFORMS_NOT_SUPPORTED 622 626 # if !defined(PNG_WRITE_TRANSFORMS_NOT_SUPPORTED) && \ 623 627 !defined(PNG_NO_WRITE_TRANSFORMS) … … 658 662 #endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */ 659 663 664 #define PNG_NO_WRITE_INTERLACING_SUPPORTED 660 665 #if !defined(PNG_NO_WRITE_INTERLACING_SUPPORTED) && \ 661 666 !defined(PNG_WRITE_INTERLACING_SUPPORTED) … … 730 735 * When MMX code is off, then optimized C replacement functions are used. 731 736 */ 737 738 #define PNG_NO_MMX_CODE 732 739 #if defined(PNG_READ_SUPPORTED) && !defined(PNG_NO_ASSEMBLER_CODE) 733 740 # ifndef PNG_ASSEMBLER_CODE_SUPPORTED trunk/lib/zlib/Makefile
r354 r358 7 7 inffast.h trees.h 8 8 9 override CFLAGS+=-DMAX_WBITS=14 -DMAX_MEM_LEVEL=710 11 9 12 10 include ../../include/common.mk trunk/lib/zlib/zconf.h
r353 r358 8 8 #ifndef ZCONF_H 9 9 #define ZCONF_H 10 10 11 11 12 /*
