nginx/auto/lib/zlib/conf

43 lines
791 B
Plaintext
Raw Normal View History

2003-12-14 14:10:27 -06:00
2004-02-09 01:46:43 -06:00
if [ $ZLIB != NONE ]; then
2003-12-14 14:10:27 -06:00
CORE_INCS="$CORE_INCS -I $ZLIB"
2004-03-09 13:47:07 -06:00
case $CC in
cl)
LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib"
CORE_LIBS="$CORE_LIBS zlib.lib"
CORE_LINK="$CORE_LINK -libpath:$ZLIB"
;;
wcl386)
LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib"
CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib"
;;
*)
LINK_DEPS="$LINK_DEPS $ZLIB/libz.a"
CORE_LIBS="$CORE_LIBS -L $ZLIB -lz"
;;
esac
2003-12-14 14:10:27 -06:00
else
ngx_lib_inc="#include <zlib.h>"
ngx_lib="zlib"
ngx_lib_test="z_stream z; deflate(&z, Z_NO_FLUSH)"
ngx_libs=-lz
. auto/lib/test
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
ZLIB=YES
2004-02-09 01:46:43 -06:00
else
ZLIB=NO
2003-12-14 14:10:27 -06:00
fi
fi