You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ni...@apache.org on 2006/04/01 11:23:48 UTC

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

Author: niq
Date: Sat Apr  1 01:23:47 2006
New Revision: 390626

URL: http://svn.apache.org/viewcvs?rev=390626&view=rev
Log:
Fix dumb typo (spotted by Peter Wojciechowski)

Modified:
    apr/apr-util/trunk/build/dbd.m4

Modified: apr/apr-util/trunk/build/dbd.m4
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/build/dbd.m4?rev=390626&r1=390625&r2=390626&view=diff
==============================================================================
--- apr/apr-util/trunk/build/dbd.m4 (original)
+++ apr/apr-util/trunk/build/dbd.m4 Sat Apr  1 01:23:47 2006
@@ -81,7 +81,7 @@
       if test "$apu_have_mysql" == "0"; then
         AC_CHECK_HEADER(mysql/mysql.h, AC_CHECK_LIB(mysqlclient_r, mysql_init, [apu_have_mysql=1]))
         if test "$apu_have_mysql" != "0"; then
-          APR_ADDTO(APRUTIL_INCLUDES, [-I$withval/include/myql])
+          APR_ADDTO(APRUTIL_INCLUDES, [-I$withval/include/mysql])
         fi
       fi
     elif test "$withval" = "no"; then



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

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 4/1/06, niq@apache.org <ni...@apache.org> wrote:
> Author: niq
> Date: Sat Apr  1 01:23:47 2006
> New Revision: 390626
>
> URL: http://svn.apache.org/viewcvs?rev=390626&view=rev
> Log:
> Fix dumb typo (spotted by Peter Wojciechowski)
>
> Modified:
>     apr/apr-util/trunk/build/dbd.m4
>
> Modified: apr/apr-util/trunk/build/dbd.m4
> URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/build/dbd.m4?rev=390626&r1=390625&r2=390626&view=diff
> ==============================================================================
> --- apr/apr-util/trunk/build/dbd.m4 (original)
> +++ apr/apr-util/trunk/build/dbd.m4 Sat Apr  1 01:23:47 2006
> @@ -81,7 +81,7 @@
>        if test "$apu_have_mysql" == "0"; then
>          AC_CHECK_HEADER(mysql/mysql.h, AC_CHECK_LIB(mysqlclient_r, mysql_init, [apu_have_mysql=1]))
>          if test "$apu_have_mysql" != "0"; then
> -          APR_ADDTO(APRUTIL_INCLUDES, [-I$withval/include/myql])
> +          APR_ADDTO(APRUTIL_INCLUDES, [-I$withval/include/mysql])
>          fi
>        fi
>      elif test "$withval" = "no"; then

This is unrelated to this commit, but the 'mysql' part reminded me,
why is the configure script looking for mysql libraries even though
the mysql dbd code isn't part of the tree?

It doesn't make sense to me to search for something by default if the
code isn't even there by default.

-garrett