From 38b9915c425941b6289cbb5962a7b2034ae7922b Mon Sep 17 00:00:00 2001 From: Christian Ehrhardt Date: Wed, 4 Sep 2019 23:42:18 +0200 Subject: [PATCH] build with newer mysql/mariadb Recent releases only need to include mysql.h for a long time and in the meantime even removed most other headers. Un-break gb.db.mysql/configure.ac by not strictly requiring this old header. --- gb.db.mysql/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gb.db.mysql/configure.ac b/gb.db.mysql/configure.ac index 455d4f848..f2eec5d82 100644 --- a/gb.db.mysql/configure.ac +++ b/gb.db.mysql/configure.ac @@ -10,7 +10,7 @@ dnl LT_INIT GB_COMPONENT( mysql, MYSQL, gb.db.mysql, [src], - [GB_FIND(mysql.h my_config.h, $prefix /opt/local /opt /usr/local/lib /usr/local /usr/lib /usr, include mysql*/include)], + [GB_FIND(mysql.h, $prefix /opt/local /opt /usr/local/lib /usr/local /usr/lib /usr, include mysql*/include)], [GB_FIND(libmysqlclient.$SHLIBEXT, $prefix /opt/local /opt /usr/local /usr, lib mysql*/lib)], [$C_LIB -lmysqlclient -lz])