You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2006/06/01 13:39:46 UTC

svn commit: r410843 - /apr/apr-util/trunk/build/dbd.m4

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