mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
646a5c1cbf
a/pkgtools-15.0-noarch-13.txz: Rebuilt. installpkg: default line length for --terselength is the number of columns. removepkg: added --terse mode. upgradepkg: default line length for --terselength is the number of columns. upgradepkg: accept -option in addition to --option. ap/vim-8.1.0026-x86_64-1.txz: Upgraded. d/bison-3.0.5-x86_64-1.txz: Upgraded. e/emacs-26.1-x86_64-1.txz: Upgraded. kde/kopete-4.14.3-x86_64-8.txz: Rebuilt. Recompiled against libidn-1.35. n/conntrack-tools-1.4.5-x86_64-1.txz: Upgraded. n/libnetfilter_conntrack-1.0.7-x86_64-1.txz: Upgraded. n/libnftnl-1.1.0-x86_64-1.txz: Upgraded. n/links-2.16-x86_64-2.txz: Rebuilt. Rebuilt to enable X driver for -g mode. n/lynx-2.8.9dev.19-x86_64-1.txz: Upgraded. n/nftables-0.8.5-x86_64-1.txz: Upgraded. n/p11-kit-0.23.11-x86_64-1.txz: Upgraded. n/ulogd-2.0.7-x86_64-1.txz: Upgraded. n/whois-5.3.1-x86_64-1.txz: Upgraded. xap/network-manager-applet-1.8.12-x86_64-1.txz: Upgraded. xap/vim-gvim-8.1.0026-x86_64-1.txz: Upgraded.
128 lines
5.1 KiB
Diff
128 lines
5.1 KiB
Diff
Upstream patch for building with mariadb:
|
|
Taken from https://bz.apache.org/bugzilla/show_bug.cgi?id=61517
|
|
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1494093
|
|
|
|
--- a/build/dbd.m4 2017-05-03 19:18:52.000000000 -0400
|
|
+++ a/build/dbd.m4 2017-09-13 16:58:07.369546391 -0400
|
|
@@ -163,10 +163,15 @@
|
|
old_cppflags="$CPPFLAGS"
|
|
old_ldflags="$LDFLAGS"
|
|
|
|
+ my_library="mysqlclient"
|
|
+
|
|
AC_ARG_WITH([mysql], APR_HELP_STRING([--with-mysql=DIR], [enable MySQL DBD driver]),
|
|
[
|
|
if test "$withval" = "yes"; then
|
|
AC_PATH_PROG([MYSQL_CONFIG],[mysql_config])
|
|
+ if test "x$MYSQL_CONFIG" = "x"; then
|
|
+ AC_PATH_PROG([MYSQL_CONFIG],[mariadb_config])
|
|
+ fi
|
|
if test "x$MYSQL_CONFIG" != 'x'; then
|
|
mysql_CPPFLAGS="`$MYSQL_CONFIG --include`"
|
|
mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`"
|
|
@@ -174,32 +179,40 @@
|
|
|
|
APR_ADDTO(CPPFLAGS, [$mysql_CPPFLAGS])
|
|
APR_ADDTO(LIBS, [$mysql_LIBS])
|
|
+
|
|
+ if $MYSQL_CONFIG --libs_r | grep -q mariadb; then
|
|
+ my_library="mariadb"
|
|
+ fi
|
|
fi
|
|
|
|
- AC_CHECK_HEADERS([mysql.h my_global.h my_sys.h],
|
|
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
|
- [apu_have_mysql=0; break],
|
|
- [#include <my_global.h>])
|
|
- if test "$apu_have_mysql" = "0"; then
|
|
- AC_CHECK_HEADERS([mysql/mysql.h mysql/my_global.h mysql/my_sys.h],
|
|
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
|
- [apu_have_mysql=0; break],
|
|
- [#include <mysql/my_global.h>])
|
|
+ AC_CHECK_HEADERS([mysql.h errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
|
+ if test "$apr_have_mysql" = "0"; then
|
|
+ AC_CHECK_HEADERS([mysql/mysql.h mysql/errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
|
fi
|
|
- if test "$apu_have_mysql" != "0" && test "x$MYSQL_CONFIG" != 'x'; then
|
|
- APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS])
|
|
+ if test "$apr_have_mysql" = "1"; then
|
|
+ AC_CHECK_HEADERS([my_global.h my_sys.h mysql/my_global.h mysql/my_sys.h])
|
|
+ AC_CHECK_LIB($my_library, mysql_init,, [apu_have_mysql=0])
|
|
+ fi
|
|
+ if test "$apu_have_mysql" = "1" && test "x$MYSQL_CONFIG" != 'x'; then
|
|
+ APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS])
|
|
fi
|
|
elif test "$withval" = "no"; then
|
|
:
|
|
else
|
|
AC_PATH_PROG([MYSQL_CONFIG],[mysql_config],,[$withval/bin])
|
|
+ if test "x$MYSQL_CONFIG" = "x"; then
|
|
+ AC_PATH_PROG([MYSQL_CONFIG],[mariadb_config],,[$withval/bin])
|
|
+ fi
|
|
if test "x$MYSQL_CONFIG" != 'x'; then
|
|
- mysql_CPPFLAGS="`$MYSQL_CONFIG --include`"
|
|
- mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`"
|
|
- mysql_LIBS="`$MYSQL_CONFIG --libs_r`"
|
|
+ mysql_CPPFLAGS="`$MYSQL_CONFIG --include`"
|
|
+ mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`"
|
|
+ mysql_LIBS="`$MYSQL_CONFIG --libs_r`"
|
|
+ if $MYSQL_CONFIG --libs_r | grep -q mariadb; then
|
|
+ my_library="mariadb"
|
|
+ fi
|
|
else
|
|
- mysql_CPPFLAGS="-I$withval/include"
|
|
- mysql_LDFLAGS="-L$withval/lib "
|
|
+ mysql_CPPFLAGS="-I$withval/include"
|
|
+ mysql_LDFLAGS="-L$withval/lib "
|
|
fi
|
|
|
|
APR_ADDTO(CPPFLAGS, [$mysql_CPPFLAGS])
|
|
@@ -207,18 +220,15 @@
|
|
APR_ADDTO(LIBS, [$mysql_LIBS])
|
|
|
|
AC_MSG_NOTICE(checking for mysql in $withval)
|
|
- AC_CHECK_HEADERS([mysql.h my_global.h my_sys.h],
|
|
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
|
- [apu_have_mysql=0; break],
|
|
- [#include <my_global.h>])
|
|
-
|
|
- if test "$apu_have_mysql" != "1"; then
|
|
- AC_CHECK_HEADERS([mysql/mysql.h mysql/my_global.h mysql/my_sys.h],
|
|
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
|
- [apu_have_mysql=0; break],
|
|
- [#include <mysql/my_global.h>])
|
|
+ AC_CHECK_HEADERS([mysql.h errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
|
+ if test "$apr_have_mysql" = "0"; then
|
|
+ AC_CHECK_HEADERS([mysql/mysql.h mysql/errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
|
+ fi
|
|
+ if test "$apr_have_mysql" = "1"; then
|
|
+ AC_CHECK_HEADERS([my_global.h my_sys.h mysql/my_global.h mysql/my_sys.h])
|
|
+ AC_CHECK_LIB($my_library, mysql_init,, [apu_have_mysql=0])
|
|
fi
|
|
- if test "$apu_have_mysql" != "0"; then
|
|
+ if test "$apu_have_mysql" = "1"; then
|
|
APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS])
|
|
fi
|
|
fi
|
|
@@ -229,7 +239,7 @@
|
|
dnl Since we have already done the AC_CHECK_LIB tests, if we have it,
|
|
dnl we know the library is there.
|
|
if test "$apu_have_mysql" = "1"; then
|
|
- APR_ADDTO(LDADD_dbd_mysql, [$mysql_LDFLAGS -lmysqlclient $mysql_LIBS])
|
|
+ APR_ADDTO(LDADD_dbd_mysql, [$mysql_LDFLAGS -l$my_library $mysql_LIBS])
|
|
fi
|
|
AC_SUBST(LDADD_dbd_mysql)
|
|
|
|
--- a/dbd/apr_dbd_mysql.c 2017-05-03 19:18:52.000000000 -0400
|
|
+++ a/dbd/apr_dbd_mysql.c 2017-09-13 19:15:20.894368809 -0400
|
|
@@ -1262,7 +1262,9 @@
|
|
|
|
static void dbd_mysql_init(apr_pool_t *pool)
|
|
{
|
|
+#if MYSQL_VERSION_ID < 100000
|
|
my_init();
|
|
+#endif
|
|
mysql_thread_init();
|
|
|
|
/* FIXME: this is a guess; find out what it really does */
|
|
|