summaryrefslogtreecommitdiffhomepage
path: root/auto/lib/zlib/conf
blob: a779b21b6bf597f75e71bfa6827306b4c616da96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

if [ $ZLIB != NONE ]; then
    CORE_INCS="$CORE_INCS -I $ZLIB"

    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

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
    else
        ZLIB=NO
    fi

fi