blob: 460325c087a498b272bde769238c714ada6a9547 [file] [log] [blame]
Igor Sysoeve9b2cb12004-02-09 20:47:18 +00001
Igor Sysoevff8da912004-09-29 16:00:49 +00002# Copyright (C) Igor Sysoev
3
4
Igor Sysoeve9b2cb12004-02-09 20:47:18 +00005if [ $PCRE != NONE ]; then
Igor Sysoev11dbe972004-03-29 17:43:58 +00006 CORE_INCS="$CORE_INCS $PCRE"
Igor Sysoeve9b2cb12004-02-09 20:47:18 +00007 CORE_DEPS="$CORE_DEPS $REGEX_DEPS"
8 CORE_SRCS="$CORE_SRCS $REGEX_SRCS"
9
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000010 case "$NGX_CC_NAME" in
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000011
Igor Sysoev1b735832004-11-11 14:07:14 +000012 msvc* | owc* | bcc)
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000013 have=NGX_PCRE . auto/have
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000014 have=PCRE_STATIC . auto/have
Igor Sysoev3646a162004-03-14 20:46:25 +000015 CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
16 LINK_DEPS="$LINK_DEPS $PCRE/pcre.lib"
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000017 CORE_LIBS="$CORE_LIBS $PCRE/pcre.lib"
18 ;;
19
Igor Sysoev78452232005-10-12 13:50:36 +000020 icc* | sunc )
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000021 have=NGX_PCRE . auto/have
Igor Sysoev3646a162004-03-14 20:46:25 +000022 CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
23
24 LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a"
25
Igor Sysoevb145b062005-06-15 18:33:41 +000026 echo $ngx_n "checking for PCRE library ...$ngx_c"
27
28 ngx_pcre_ver=`grep PCRE_MAJOR= $PCRE/configure.in \
29 | sed -e 's/^.*=\(.*\)$/\1/'`
30
31 echo " $ngx_pcre_ver major version found"
32
Igor Sysoev3646a162004-03-14 20:46:25 +000033 # to allow -ipo optimization we link with the *.o but not library
Igor Sysoevb145b062005-06-15 18:33:41 +000034
35 case "$ngx_pcre_ver" in
36 6)
37 CORE_LIBS="$CORE_LIBS $PCRE/pcre_chartables.o"
38 CORE_LIBS="$CORE_LIBS $PCRE/pcre_compile.o"
39 CORE_LIBS="$CORE_LIBS $PCRE/pcre_exec.o"
40 CORE_LIBS="$CORE_LIBS $PCRE/pcre_fullinfo.o"
41 CORE_LIBS="$CORE_LIBS $PCRE/pcre_globals.o"
42 CORE_LIBS="$CORE_LIBS $PCRE/pcre_tables.o"
43 CORE_LIBS="$CORE_LIBS $PCRE/pcre_try_flipped.o"
44 ;;
45
46 *)
47 CORE_LIBS="$CORE_LIBS $PCRE/pcre.o"
48 ;;
49 esac
Igor Sysoev3646a162004-03-14 20:46:25 +000050 ;;
51
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000052 *)
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000053 have=NGX_PCRE . auto/have
Igor Sysoeva893eab2004-03-11 21:34:52 +000054 CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
55 LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a"
Igor Sysoev9a864bd2004-04-04 20:32:09 +000056 CORE_LIBS="$CORE_LIBS $PCRE/.libs/libpcre.a"
57 #CORE_LIBS="$CORE_LIBS -L $PCRE/.libs -lpcre"
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000058 ;;
59
60 esac
Igor Sysoeve9b2cb12004-02-09 20:47:18 +000061
62else
63
Igor Sysoevd039a2e2005-02-22 14:40:13 +000064 if [ "$NGX_PLATFORM" != win32 ]; then
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000065 PCRE=NO
Igor Sysoev9bfb4342004-04-18 19:06:02 +000066
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000067 # FreeBSD PCRE port requires --with-cc-opt="-I /usr/local/include"
68 # --with-ld-opt="-L /usr/local/lib"
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000069
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000070 ngx_feature="PCRE library"
Igor Sysoevf6906042004-11-25 16:17:31 +000071 ngx_feature_name="NGX_PCRE"
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000072 ngx_feature_run=no
73 ngx_feature_incs="#include <pcre.h>"
74 ngx_feature_libs="-lpcre"
75 ngx_feature_test="pcre *re; re = pcre_compile(NULL, 0, NULL, 0, NULL)"
76 . auto/feature
Igor Sysoeve9b2cb12004-02-09 20:47:18 +000077
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000078 if [ $ngx_found = yes ]; then
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000079 CORE_DEPS="$CORE_DEPS $REGEX_DEPS"
80 CORE_SRCS="$CORE_SRCS $REGEX_SRCS"
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000081 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000082 PCRE=YES
Igor Sysoev9bfb4342004-04-18 19:06:02 +000083 ngx_found=no
Igor Sysoevfc5a10a2004-03-09 19:47:07 +000084 fi
Igor Sysoeve9b2cb12004-02-09 20:47:18 +000085 fi
Igor Sysoeve9b2cb12004-02-09 20:47:18 +000086fi