Igor Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 1 | |
Igor Sysoev | ff8da91 | 2004-09-29 16:00:49 +0000 | [diff] [blame] | 2 | # Copyright (C) Igor Sysoev |
| 3 | |
| 4 | |
Igor Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 5 | if [ $PCRE != NONE ]; then |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 6 | CORE_INCS="$CORE_INCS $PCRE" |
Igor Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 7 | CORE_DEPS="$CORE_DEPS $REGEX_DEPS" |
| 8 | CORE_SRCS="$CORE_SRCS $REGEX_SRCS" |
| 9 | |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 10 | case "$NGX_CC_NAME" in |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 11 | |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 12 | msvc* | owc* | bcc) |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 13 | have=NGX_PCRE . auto/have |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 14 | have=PCRE_STATIC . auto/have |
Igor Sysoev | 3646a16 | 2004-03-14 20:46:25 +0000 | [diff] [blame] | 15 | CORE_DEPS="$CORE_DEPS $PCRE/pcre.h" |
| 16 | LINK_DEPS="$LINK_DEPS $PCRE/pcre.lib" |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 17 | CORE_LIBS="$CORE_LIBS $PCRE/pcre.lib" |
| 18 | ;; |
| 19 | |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 20 | icc* | sunc ) |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 21 | have=NGX_PCRE . auto/have |
Igor Sysoev | 3646a16 | 2004-03-14 20:46:25 +0000 | [diff] [blame] | 22 | CORE_DEPS="$CORE_DEPS $PCRE/pcre.h" |
| 23 | |
| 24 | LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a" |
| 25 | |
Igor Sysoev | b145b06 | 2005-06-15 18:33:41 +0000 | [diff] [blame] | 26 | 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 Sysoev | 3646a16 | 2004-03-14 20:46:25 +0000 | [diff] [blame] | 33 | # to allow -ipo optimization we link with the *.o but not library |
Igor Sysoev | b145b06 | 2005-06-15 18:33:41 +0000 | [diff] [blame] | 34 | |
| 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 Sysoev | 3646a16 | 2004-03-14 20:46:25 +0000 | [diff] [blame] | 50 | ;; |
| 51 | |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 52 | *) |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 53 | have=NGX_PCRE . auto/have |
Igor Sysoev | a893eab | 2004-03-11 21:34:52 +0000 | [diff] [blame] | 54 | CORE_DEPS="$CORE_DEPS $PCRE/pcre.h" |
| 55 | LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a" |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 56 | CORE_LIBS="$CORE_LIBS $PCRE/.libs/libpcre.a" |
| 57 | #CORE_LIBS="$CORE_LIBS -L $PCRE/.libs -lpcre" |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 58 | ;; |
| 59 | |
| 60 | esac |
Igor Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 61 | |
| 62 | else |
| 63 | |
Igor Sysoev | d039a2e | 2005-02-22 14:40:13 +0000 | [diff] [blame] | 64 | if [ "$NGX_PLATFORM" != win32 ]; then |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 65 | PCRE=NO |
Igor Sysoev | 9bfb434 | 2004-04-18 19:06:02 +0000 | [diff] [blame] | 66 | |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 67 | # FreeBSD PCRE port requires --with-cc-opt="-I /usr/local/include" |
| 68 | # --with-ld-opt="-L /usr/local/lib" |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 69 | |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 70 | ngx_feature="PCRE library" |
Igor Sysoev | f690604 | 2004-11-25 16:17:31 +0000 | [diff] [blame] | 71 | ngx_feature_name="NGX_PCRE" |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 72 | 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 Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 77 | |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 78 | if [ $ngx_found = yes ]; then |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 79 | CORE_DEPS="$CORE_DEPS $REGEX_DEPS" |
| 80 | CORE_SRCS="$CORE_SRCS $REGEX_SRCS" |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 81 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 82 | PCRE=YES |
Igor Sysoev | 9bfb434 | 2004-04-18 19:06:02 +0000 | [diff] [blame] | 83 | ngx_found=no |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 84 | fi |
Igor Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 85 | fi |
Igor Sysoev | e9b2cb1 | 2004-02-09 20:47:18 +0000 | [diff] [blame] | 86 | fi |