]> git.kaiwu.me - nginx.git/commitdiff
r1387 merge:
authorIgor Sysoev <igor@sysoev.ru>
Tue, 14 Aug 2007 20:03:00 +0000 (20:03 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Tue, 14 Aug 2007 20:03:00 +0000 (20:03 +0000)
fix building by bcc without PCRE

src/http/ngx_http_core_module.c

index 8f36caeb81e42db13320043bfbf33ec5dfb2f4fd..696c10b34ed4ed6d4fd99c8656863ae7d33cc34e 100644 (file)
@@ -933,14 +933,19 @@ ngx_http_core_find_location(ngx_http_request_t *r,
     ngx_array_t *locations, ngx_uint_t regex_start, size_t len)
 {
     ngx_int_t                  n, rc;
-    ngx_uint_t                 i, found, noregex;
+    ngx_uint_t                 i, found;
     ngx_http_core_loc_conf_t  *clcf, **clcfp;
+#if (NGX_PCRE)
+    ngx_uint_t                 noregex;
+#endif
 
     ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
                    "find location for \"%V\"", &r->uri);
 
     found = 0;
+#if (NGX_PCRE)
     noregex = 0;
+#endif
 
     clcfp = locations->elts;
     for (i = 0; i < locations->nelts; i++) {
@@ -998,9 +1003,12 @@ ngx_http_core_find_location(ngx_http_request_t *r,
                 break;
             }
 
+            found = 1;
+
             r->loc_conf = clcfp[i]->loc_conf;
+#if (NGX_PCRE)
             noregex = clcfp[i]->noregex;
-            found = 1;
+#endif
         }
     }