blob: f033354a4a3c85aeeefe24169719a2c56bdd7b6a [file] [log] [blame]
Igor Sysoevdc867cd2003-12-14 20:10:27 +00001
Igor Sysoevff8da912004-09-29 16:00:49 +00002# Copyright (C) Igor Sysoev
3
4
Igor Sysoev7af6b162004-02-09 07:46:43 +00005if [ $ZLIB != NONE ]; then
Igor Sysoev11dbe972004-03-29 17:43:58 +00006 CORE_INCS="$CORE_INCS $ZLIB"
Igor Sysoevdc867cd2003-12-14 20:10:27 +00007
Igor Sysoevc0edbcc2004-10-21 15:34:38 +00008 case "$NGX_CC_NAME" in
Igor Sysoevfc5a10a2004-03-09 19:47:07 +00009
Igor Sysoev1b735832004-11-11 14:07:14 +000010 msvc* | owc* | bcc)
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000011 LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib"
12 CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib"
13 ;;
14
Igor Sysoev1b735832004-11-11 14:07:14 +000015 icc*)
Igor Sysoev3646a162004-03-14 20:46:25 +000016 LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
17
18 # to allow -ipo optimization we link with the *.o but not library
19 CORE_LIBS="$CORE_LIBS $ZLIB/adler32.o"
20 CORE_LIBS="$CORE_LIBS $ZLIB/crc32.o"
21 CORE_LIBS="$CORE_LIBS $ZLIB/deflate.o"
22 CORE_LIBS="$CORE_LIBS $ZLIB/trees.o"
23 CORE_LIBS="$CORE_LIBS $ZLIB/zutil.o"
Igor Sysoevd039a2e2005-02-22 14:40:13 +000024 CORE_LIBS="$CORE_LIBS $ZLIB/compress.o"
Igor Sysoev3646a162004-03-14 20:46:25 +000025
26 if [ $ZLIB_ASM != NO ]; then
27 CORE_LIBS="$CORE_LIBS $ZLIB/match.o"
28 fi
29 ;;
30
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000031 *)
32 LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
Igor Sysoev9a864bd2004-04-04 20:32:09 +000033 CORE_LIBS="$CORE_LIBS $ZLIB/libz.a"
34 #CORE_LIBS="$CORE_LIBS -L $ZLIB -lz"
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000035 ;;
36
37 esac
Igor Sysoevdc867cd2003-12-14 20:10:27 +000038
39else
40
Igor Sysoevd039a2e2005-02-22 14:40:13 +000041 if [ "$NGX_PLATFORM" != win32 ]; then
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000042 ZLIB=NO
Igor Sysoevdc867cd2003-12-14 20:10:27 +000043
Igor Sysoev9bfb4342004-04-18 19:06:02 +000044 # FreeBSD, Solaris, Linux
45
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000046 ngx_feature="zlib library"
Igor Sysoevf6906042004-11-25 16:17:31 +000047 ngx_feature_name=
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000048 ngx_feature_run=no
49 ngx_feature_incs="#include <zlib.h>"
Igor Sysoev0ec09f92006-11-27 11:07:09 +000050 ngx_feature_path=
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000051 ngx_feature_libs="-lz"
52 ngx_feature_test="z_stream z; deflate(&z, Z_NO_FLUSH)"
53 . auto/feature
Igor Sysoevdc867cd2003-12-14 20:10:27 +000054
55
Igor Sysoevfff32322004-04-08 15:58:25 +000056 if [ $ngx_found = yes ]; then
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000057 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
Igor Sysoevfff32322004-04-08 15:58:25 +000058 ZLIB=YES
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000059 ngx_found=no
Igor Sysoevfff32322004-04-08 15:58:25 +000060 fi
Igor Sysoevdc867cd2003-12-14 20:10:27 +000061 fi
62
63fi