comparison auto/lib/pcre/make @ 296:2ceaee987f37 NGINX_0_5_18

nginx 0.5.18 *) Feature: the ngx_http_sub_filter_module. *) Feature: the "$upstream_http_..." variables. *) Feature: now the $upstream_status and $upstream_response_time variables keep data about all upstreams before X-Accel-Redirect. *) Bugfix: a segmentation fault occurred in master process after first reconfiguration and receiving any signal if nginx was built with ngx_http_perl_module and perl did not support multiplicity; bug appeared in 0.5.9. *) Bugfix: if perl did not support multiplicity, then after reconfiguration perl code did not work; bug appeared in 0.3.38.
author Igor Sysoev <http://sysoev.ru>
date Thu, 19 Apr 2007 00:00:00 +0400
parents b31656313b59
children e66f886a8305
comparison
equal deleted inserted replaced
295:65b7ac8795e3 296:2ceaee987f37
51 ;; 51 ;;
52 52
53 *) 53 *)
54 cat << END >> $NGX_MAKEFILE 54 cat << END >> $NGX_MAKEFILE
55 55
56 $PCRE/pcre.h: $NGX_MAKEFILE 56 $PCRE/pcre.h: $PCRE/Makefile
57
58 $PCRE/Makefile: $NGX_MAKEFILE
57 cd $PCRE \\ 59 cd $PCRE \\
58 && if [ -f Makefile ]; then \$(MAKE) distclean; fi \\ 60 && if [ -f Makefile ]; then \$(MAKE) distclean; fi \\
59 && CC="\$(CC)" CFLAGS="$PCRE_OPT" \\ 61 && CC="\$(CC)" CFLAGS="$PCRE_OPT" \\
60 ./configure --disable-shared 62 ./configure --disable-shared
61 63
62 64
63 $PCRE/.libs/libpcre.a: $PCRE/pcre.h 65 $PCRE/.libs/libpcre.a: $PCRE/Makefile
64 cd $PCRE \\ 66 cd $PCRE \\
65 && \$(MAKE) libpcre.la 67 && \$(MAKE) libpcre.la
66 68
67 END 69 END
68 70