pike.git/
src/
modules/
Mysql/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2021-10-18
2021-10-18 07:17:41 by Henrik Grubbström (Grubba) <grubba@grubba.org>
6dc3760333629ff8128f877c5d3b42c37a783686 (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
8.0
Mysql
[Configure]
: Fix detection of OpenSSL 1.1.x and later.
286:
if test "x${MARIADB_CONFIG}" = "xno"; then :; else # Needed for libmariadbclient.a 1.0.0. AC_SEARCH_LIBS(OPENSSL_config, crypto)
+
AC_SEARCH_LIBS(OPENSSL_init_ssl, ssl, [], [
+
# In OpenSSL 1.0.x and earlier the function was called
+
# SSL_library_init().
AC_SEARCH_LIBS(SSL_library_init, ssl)
-
+
])
fi AC_SEARCH_LIBS(_db_doprnt_, dbug)