nginx/auto/lib/zlib/conf

61 lines
1.3 KiB
Plaintext
Raw Normal View History

2003-12-14 14:10:27 -06:00
# Copyright (C) Igor Sysoev
2004-02-09 01:46:43 -06:00
if [ $ZLIB != NONE ]; then
2004-03-29 11:43:58 -06:00
CORE_INCS="$CORE_INCS $ZLIB"
2003-12-14 14:10:27 -06:00
2004-03-25 14:03:02 -06:00
case "$CC" in
2004-03-09 13:47:07 -06:00
2004-03-29 11:43:58 -06:00
cl | wcl386 | bcc32)
2004-03-09 13:47:07 -06:00
LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib"
CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib"
;;
2004-03-14 14:46:25 -06:00
*icc)
LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
# to allow -ipo optimization we link with the *.o but not library
CORE_LIBS="$CORE_LIBS $ZLIB/adler32.o"
CORE_LIBS="$CORE_LIBS $ZLIB/crc32.o"
CORE_LIBS="$CORE_LIBS $ZLIB/deflate.o"
CORE_LIBS="$CORE_LIBS $ZLIB/trees.o"
CORE_LIBS="$CORE_LIBS $ZLIB/zutil.o"
if [ $ZLIB_ASM != NO ]; then
CORE_LIBS="$CORE_LIBS $ZLIB/match.o"
fi
;;
2004-03-09 13:47:07 -06:00
*)
LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
2004-04-04 15:32:09 -05:00
CORE_LIBS="$CORE_LIBS $ZLIB/libz.a"
#CORE_LIBS="$CORE_LIBS -L $ZLIB -lz"
2004-03-09 13:47:07 -06:00
;;
esac
2003-12-14 14:10:27 -06:00
else
2004-04-08 10:58:25 -05:00
if [ $PLATFORM != win32 ]; then
2003-12-14 14:10:27 -06:00
2004-04-18 14:06:02 -05:00
# FreeBSD, Solaris, Linux
ngx_lib_cflags=
ngx_lib_inc="#include <zlib.h>"
2004-04-08 10:58:25 -05:00
ngx_lib="zlib library"
ngx_lib_test="z_stream z; deflate(&z, Z_NO_FLUSH)"
ngx_libs=-lz
. auto/lib/test
2003-12-14 14:10:27 -06:00
2004-04-08 10:58:25 -05:00
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
ZLIB=YES
else
ZLIB=NO
fi
2003-12-14 14:10:27 -06:00
fi
fi