Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EF4BC11F75 for ; Thu, 24 Jul 2014 00:40:23 +0000 (UTC) Received: (qmail 5304 invoked by uid 500); 24 Jul 2014 00:40:23 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 5242 invoked by uid 500); 24 Jul 2014 00:40:23 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 5231 invoked by uid 99); 24 Jul 2014 00:40:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jul 2014 00:40:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of takashi@tks.st designates 203.189.105.199 as permitted sender) Received: from [203.189.105.199] (HELO m4.xrea.com) (203.189.105.199) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jul 2014 00:40:20 +0000 Received: (qmail 24464 invoked by uid 89); 24 Jul 2014 09:39:53 +0900 Received: from mail-oa0-f53.google.com (takashi@tks.st@209.85.219.53) by m4.xrea.com with RC4-SHA encrypted SMTP; 24 Jul 2014 09:39:53 +0900 Received: by mail-oa0-f53.google.com with SMTP id j17so2758180oag.12 for ; Wed, 23 Jul 2014 17:39:50 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.182.24.193 with SMTP id w1mr7277995obf.47.1406162390675; Wed, 23 Jul 2014 17:39:50 -0700 (PDT) Received: by 10.76.91.41 with HTTP; Wed, 23 Jul 2014 17:39:50 -0700 (PDT) In-Reply-To: <20140723190145.C39912388860@eris.apache.org> References: <20140723190145.C39912388860@eris.apache.org> Date: Thu, 24 Jul 2014 09:39:50 +0900 Message-ID: Subject: Re: svn commit: r1612921 - in /httpd/httpd/trunk: configure.in server/util_pcre.c From: Takashi Sato To: dev@httpd.apache.org Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org > --- httpd/httpd/trunk/configure.in (original) > +++ httpd/httpd/trunk/configure.in Wed Jul 23 19:01:45 2014 > @@ -236,7 +236,9 @@ if test "$PCRE_CONFIG" != "false"; then > fi > case `$PCRE_CONFIG --version` in > [[1-5].*]) > - AC_MSG_ERROR([Need at least pcre version 6.0]) > + AC_MSG_ERROR([Need at least pcre version 6.7]) > + [6.[0-6]*]) > + AC_MSG_ERROR([Need at least pcre version 6.7]) > ;; > esac > AC_MSG_NOTICE([Using external PCRE library from $PCRE_CONFIG]) This causes an error: checking for pcre-config... /usr/bin/pcre-config ./configure: line 6115: syntax error near unexpected token `)' ./configure: line 6115: ` 6.[0-6]*)' I think following fix is needed. Index: configure.in =================================================================== --- configure.in (revision 1612973) +++ configure.in (working copy) @@ -237,6 +237,7 @@ case `$PCRE_CONFIG --version` in [[1-5].*]) AC_MSG_ERROR([Need at least pcre version 6.7]) + ;; [6.[0-6]*]) AC_MSG_ERROR([Need at least pcre version 6.7]) ;;