mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://github.com/gentoo/gentoo/pull/15083 Closes: https://bugs.gentoo.org/693392 Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
22 lines
401 B
Diff
22 lines
401 B
Diff
--- libnss-mysql-1.5/acinclude.m4
|
|
+++ libnss-mysql-1.5.sal/acinclude.m4
|
|
@@ -80,6 +80,18 @@
|
|
fi
|
|
done
|
|
|
|
+dnl Test also $libdir path
|
|
+if test -f "$libdir/libmysqlclient.so"
|
|
+then
|
|
+ MYSQL_LIB_DIR="$libdir"
|
|
+ break
|
|
+fi
|
|
+if test -f "$libdir/mysql/libmysqlclient.so"
|
|
+then
|
|
+ MYSQL_LIB_DIR="$libdir/mysql"
|
|
+ break
|
|
+fi
|
|
+
|
|
if test -n "$MYSQL_LIB_DIR"
|
|
then
|
|
AC_MSG_RESULT([$MYSQL_LIB_DIR])
|