comparison auto/lib/md5/conf @ 282:30310107dbc9

nginx-0.0.2-2004-03-09-22:47:07 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 09 Mar 2004 19:47:07 +0000
parents 5238e93961a1
children f81d075ad172
comparison
equal deleted inserted replaced
281:014292b55158 282:30310107dbc9
10 OPENSSL_MD5=NO 10 OPENSSL_MD5=NO
11 fi 11 fi
12 12
13 CORE_INCS="$CORE_INCS -I $MD5" 13 CORE_INCS="$CORE_INCS -I $MD5"
14 14
15 if [ "$PLATFORM" = "win32" ]; then 15 case $CC in
16 CORE_LIBS="$CORE_LIBS md5.lib" 16
17 CORE_LINK="$CORE_LINK -libpath:$MD5" 17 cl)
18 else 18 LINK_DEPS="$LINK_DEPS $MD5/md5.lib"
19 LINK_DEPS="$LINK_DEPS $MD5/libmd5.a" 19 CORE_LIBS="$CORE_LIBS md5.lib"
20 CORE_LIBS="$CORE_LIBS -L $MD5 -lmd5" 20 CORE_LINK="$CORE_LINK -libpath:$MD5"
21 fi 21 ;;
22
23 wcl386)
24 LINK_DEPS="$LINK_DEPS $MD5/md5.lib"
25 CORE_LIBS="$CORE_LIBS $MD5/md5.lib"
26 ;;
27
28 *)
29 LINK_DEPS="$LINK_DEPS $MD5/libmd5.a"
30 CORE_LIBS="$CORE_LIBS -L $MD5 -lmd5"
31 ;;
32
33 esac
22 34
23 else 35 else
24 36
25 ngx_lib_inc="#include <sys/types.h> 37 ngx_lib_inc="#include <sys/types.h>
26 #include <md5.h>" 38 #include <md5.h>"