comparison auto/lib/zlib/conf @ 288:f81d075ad172

nginx-0.0.2-2004-03-14-23:46:25 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 14 Mar 2004 20:46:25 +0000
parents 30310107dbc9
children 99b349386504
comparison
equal deleted inserted replaced
287:35a6a9df2d25 288:f81d075ad172
11 ;; 11 ;;
12 12
13 wcl386) 13 wcl386)
14 LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib" 14 LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib"
15 CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib" 15 CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib"
16 ;;
17
18 *icc)
19 LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
20
21 # to allow -ipo optimization we link with the *.o but not library
22 CORE_LIBS="$CORE_LIBS $ZLIB/adler32.o"
23 CORE_LIBS="$CORE_LIBS $ZLIB/crc32.o"
24 CORE_LIBS="$CORE_LIBS $ZLIB/deflate.o"
25 CORE_LIBS="$CORE_LIBS $ZLIB/trees.o"
26 CORE_LIBS="$CORE_LIBS $ZLIB/zutil.o"
27
28 if [ $ZLIB_ASM != NO ]; then
29 CORE_LIBS="$CORE_LIBS $ZLIB/match.o"
30 fi
16 ;; 31 ;;
17 32
18 *) 33 *)
19 LINK_DEPS="$LINK_DEPS $ZLIB/libz.a" 34 LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
20 CORE_LIBS="$CORE_LIBS -L $ZLIB -lz" 35 CORE_LIBS="$CORE_LIBS -L $ZLIB -lz"