From: Warren Young Date: December 7 2004 8:40pm Subject: Re: Configure script problem and (maybe) patch List-Archive: http://lists.mysql.com/plusplus/3768 Message-Id: <41B61532.5040706@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit I made the patch slightly different: diff -u -r1.25 configure.in --- configure.in 20 Nov 2004 23:51:19 -0000 1.25 +++ configure.in 7 Dec 2004 20:38:06 -0000 @@ -32,12 +32,12 @@ AC_ARG_WITH(mysql-lib, [ --with-mysql-lib= directory path of MySQL library installation], - [MYSQL_lib_check=$with_mysql/lib/mysql]) + [MYSQL_lib_check=$with_mysql_lib/lib]) AC_ARG_WITH(mysql-include, [ --with-mysql-include= directory path of MySQL header installation], - [MYSQL_inc_check=$with_mysql/include/mysql]) + [MYSQL_inc_check=$with_mysql_include/include]) AC_MSG_CHECKING([for MySQL library directory]) MYSQL_libdir= Does this also work for you? If not, I think the patch should be extended to include your version, rather than going with the way you did it. By the way, please provide patches in unified diff format next time, and be sure to get the order correct. Yours appeared to be some other type of context diff, and was reversed.