Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 73583 invoked from network); 1 Jun 2006 11:40:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Jun 2006 11:40:08 -0000 Received: (qmail 64572 invoked by uid 500); 1 Jun 2006 11:40:08 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 64471 invoked by uid 500); 1 Jun 2006 11:40:07 -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 64460 invoked by uid 99); 1 Jun 2006 11:40:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 04:40:07 -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; Thu, 01 Jun 2006 04:40:07 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id EB3C41A983A; Thu, 1 Jun 2006 04:39:46 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r410843 - /apr/apr-util/trunk/build/dbd.m4 Date: Thu, 01 Jun 2006 11:39:46 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060601113946.EB3C41A983A@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: Thu Jun 1 04:39:43 2006 New Revision: 410843 URL: http://svn.apache.org/viewvc?rev=410843&view=rev Log: * build/dbd.m4: "==" is not portable test syntax. Modified: apr/apr-util/trunk/build/dbd.m4 Modified: apr/apr-util/trunk/build/dbd.m4 URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/build/dbd.m4?rev=410843&r1=410842&r2=410843&view=diff ============================================================================== --- apr/apr-util/trunk/build/dbd.m4 (original) +++ apr/apr-util/trunk/build/dbd.m4 Thu Jun 1 04:39:43 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