summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--THANKS.in2
-rw-r--r--configure.in4
2 files changed, 6 insertions, 0 deletions
diff --git a/THANKS.in b/THANKS.in
index 71d272f..0a5a34f 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -181,3 +181,5 @@ Sakari Lehtonen
181John Rouillard 181John Rouillard
182Sebastian Wiesinger 182Sebastian Wiesinger
183Jason Kau 183Jason Kau
184Michael Tiernan
185Jeremy Reed
diff --git a/configure.in b/configure.in
index 0aee3bc..5988b33 100644
--- a/configure.in
+++ b/configure.in
@@ -273,6 +273,10 @@ if test $with_mysql != "no" ; then
273 with_mysql=$MYSQLCONFIG 273 with_mysql=$MYSQLCONFIG
274 EXTRAS="$EXTRAS check_mysql check_mysql_query" 274 EXTRAS="$EXTRAS check_mysql check_mysql_query"
275 MYSQLINCLUDE=`$MYSQLCONFIG --include` 275 MYSQLINCLUDE=`$MYSQLCONFIG --include`
276 # Mysql 3 does not support --include. --cflags should be sufficient
277 if test $? -ne 0 ; then
278 MYSQLINCLUDE=""
279 fi
276 MYSQLLIBS=`$MYSQLCONFIG --libs` 280 MYSQLLIBS=`$MYSQLCONFIG --libs`
277 MYSQLCFLAGS=`$MYSQLCONFIG --cflags` 281 MYSQLCFLAGS=`$MYSQLCONFIG --cflags`
278 AC_SUBST(MYSQLINCLUDE) 282 AC_SUBST(MYSQLINCLUDE)