Re: [Libdbi-drivers-devel] [PATCH 1/1] build: Use MYSQL_CONFIG variable instead of 'mysql_config'

2021-10-20 Thread Markus Hoenicka

Am 2021-10-14 09:17, schrub Herve Codina:

The MYSQL_CONFIG variable is used to check 'mysql_config' prog.
This variable can be override by the user but was not used for
retrieving MYSQL_INCLUDE, MYSQL_LIBS, ...

This commit replaces the hardcoded usage of 'mysql_config' by
the use of MYSQL_CONFIG variable.

This lead to 'MYSQL_CONFIG=/some/where/mysql_config ./configure'
command to work properly.

Signed-off-by: Herve Codina 
---
 acinclude.m4 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/acinclude.m4 b/acinclude.m4
index e99318f..9dd2b0f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -116,15 +116,15 @@ if test "$ac_mysql" = "yes"; then
fi

if test "$ac_mysql_incdir" = "no"; then
-   MYSQL_INCLUDE=`mysql_config --include`
+   MYSQL_INCLUDE=`$MYSQL_CONFIG --include`
else
MYSQL_INCLUDE=-I$ac_mysql_incdir
fi
if test "$ac_mysql_libdir" = "no"; then
if test "$ac_mysql_threadsafe" = "YES"; then
-   MYSQL_LIBS=`mysql_config --libs_r`
+   MYSQL_LIBS=`$MYSQL_CONFIG --libs_r`
else
-   MYSQL_LIBS=`mysql_config --libs`
+   MYSQL_LIBS=`$MYSQL_CONFIG --libs`
fi
else
if test "$ac_mysql_threadsafe" = "YES"; then


Hi Herve,

thanks for providing the patch - I've just pushed the changes.

best regards,
Markus
--
Markus Hoenicka
http://www.mhoenicka.de
AQ score 38


___
Libdbi-drivers-devel mailing list
Libdbi-drivers-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libdbi-drivers-devel


[Libdbi-drivers-devel] [PATCH 1/1] build: Use MYSQL_CONFIG variable instead of 'mysql_config'

2021-10-14 Thread Herve Codina
The MYSQL_CONFIG variable is used to check 'mysql_config' prog.
This variable can be override by the user but was not used for
retrieving MYSQL_INCLUDE, MYSQL_LIBS, ...

This commit replaces the hardcoded usage of 'mysql_config' by
the use of MYSQL_CONFIG variable.

This lead to 'MYSQL_CONFIG=/some/where/mysql_config ./configure'
command to work properly.

Signed-off-by: Herve Codina 
---
 acinclude.m4 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/acinclude.m4 b/acinclude.m4
index e99318f..9dd2b0f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -116,15 +116,15 @@ if test "$ac_mysql" = "yes"; then
fi
 
if test "$ac_mysql_incdir" = "no"; then
-   MYSQL_INCLUDE=`mysql_config --include`
+   MYSQL_INCLUDE=`$MYSQL_CONFIG --include`
else
MYSQL_INCLUDE=-I$ac_mysql_incdir
fi
if test "$ac_mysql_libdir" = "no"; then
if test "$ac_mysql_threadsafe" = "YES"; then
-   MYSQL_LIBS=`mysql_config --libs_r`
+   MYSQL_LIBS=`$MYSQL_CONFIG --libs_r`
else
-   MYSQL_LIBS=`mysql_config --libs`
+   MYSQL_LIBS=`$MYSQL_CONFIG --libs`
fi
else
if test "$ac_mysql_threadsafe" = "YES"; then
-- 
2.31.1



___
Libdbi-drivers-devel mailing list
Libdbi-drivers-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libdbi-drivers-devel