Warren said:
(patch)
> 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.
It didn't until I (as you suggest) extended the search path thus:
--- ../foo/configure.in 2004-11-20 15:51:27.000000000 -0800
+++ configure.in 2004-12-07 13:34:46.000000000 -0800
@@ -32,12 +32,12 @@
AC_ARG_WITH(mysql-lib,
[ --with-mysql-lib=<path> directory path of MySQL library
installation],
- [MYSQL_lib_check=$with_mysql/lib/mysql])
+ [MYSQL_lib_check="$with_mysql_lib/lib $with_mysql_lib/lib/mysql"])
AC_ARG_WITH(mysql-include,
[ --with-mysql-include=<path>
directory path of MySQL header installation],
- [MYSQL_inc_check=$with_mysql/include/mysql])
+ [MYSQL_inc_check="$with_mysql_include/include
$with_mysql_include/include/mysql"])
AC_MSG_CHECKING([for MySQL library directory])
MYSQL_libdir=
> By the way, please provide patches in unified diff format
> next time
Sorry 'bout that. I've only ever submitted a few patches to the
community and it's always enough time between submissions that I forget
just what needs to be done. Hope the above works better for you.
-SR