| # Copyright (C) Igor Sysoev |
| if [ $ZLIB != NONE ]; then |
| CORE_INCS="$CORE_INCS $ZLIB" |
| LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib" |
| CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib" |
| 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" |
| LINK_DEPS="$LINK_DEPS $ZLIB/libz.a" |
| CORE_LIBS="$CORE_LIBS $ZLIB/libz.a" |
| #CORE_LIBS="$CORE_LIBS -L $ZLIB -lz" |
| if [ $PLATFORM != win32 ]; then |
| # FreeBSD, Solaris, Linux |
| ngx_lib_inc="#include <zlib.h>" |
| ngx_lib_test="z_stream z; deflate(&z, Z_NO_FLUSH)" |
| if [ $ngx_found = yes ]; then |
| CORE_LIBS="$CORE_LIBS $ngx_libs" |