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/14 16:07:28 UTC

svn commit: r414264 - /apr/apr-util/branches/1.2.x/build/dbd.m4

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