Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 47664 invoked from network); 14 Jun 2006 14:07:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Jun 2006 14:07:50 -0000 Received: (qmail 61845 invoked by uid 500); 14 Jun 2006 14:07:49 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 61813 invoked by uid 500); 14 Jun 2006 14:07:49 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 61800 invoked by uid 99); 14 Jun 2006 14:07:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 07:07:49 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jun 2006 07:07:48 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id CAE4D1A9842; Wed, 14 Jun 2006 07:07:28 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r414264 - /apr/apr-util/branches/1.2.x/build/dbd.m4 Date: Wed, 14 Jun 2006 14:07:28 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060614140728.CAE4D1A9842@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Wed Jun 14 07:07:28 2006 New Revision: 414264 URL: http://svn.apache.org/viewvc?rev=414264&view=rev Log: Merge r410843 from trunk: * build/dbd.m4: "==" is not portable test syntax. Modified: apr/apr-util/branches/1.2.x/build/dbd.m4 Modified: apr/apr-util/branches/1.2.x/build/dbd.m4 URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/build/dbd.m4?rev=414264&r1=414263&r2=414264&view=diff ============================================================================== --- apr/apr-util/branches/1.2.x/build/dbd.m4 (original) +++ apr/apr-util/branches/1.2.x/build/dbd.m4 Wed Jun 14 07:07:28 2006 @@ -30,7 +30,7 @@ apu_have_pgsql=0 if test "$withval" = "yes"; then AC_CHECK_HEADERS(libpq-fe.h, AC_CHECK_LIB(pq, PQsendQueryPrepared, [apu_have_pgsql=1])) - if test "$apu_have_pgsql" == "0"; then + if test "$apu_have_pgsql" = "0"; then AC_CHECK_HEADERS(postgresql/libpq-fe.h, AC_CHECK_LIB(pq, PQsendQueryPrepared, [apu_have_pgsql=1])) fi elif test "$withval" = "no"; then @@ -97,7 +97,7 @@ fi AC_CHECK_HEADERS(mysql.h, AC_CHECK_LIB(mysqlclient_r, mysql_init, [apu_have_mysql=1])) - if test "$apu_have_mysql" == "0"; then + if test "$apu_have_mysql" = "0"; then AC_CHECK_HEADERS(mysql/mysql.h, AC_CHECK_LIB(mysqlclient_r, mysql_init, [apu_have_mysql=1])) else if test "x$MYSQL_CONFIG" != 'x'; then