[Libreoffice-commits] core.git: configure.ac
Tor Lillqvist
tml at collabora.com
Wed Jan 11 17:58:12 UTC 2017
configure.ac | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit 9334de4f6ddc3e7d60f727aa845c7aa7db3fe019
Author: Tor Lillqvist <tml at collabora.com>
Date: Wed Jan 11 19:51:59 2017 +0200
Don't suggest any "devel packages" on macOS
Installing random 3rd-party "devel packages" is exactly what we don't
want people to do when building on macOS. And anyway, there is no
reason to believe this particular check will ever fail (there even is
a comment that says "MacOS X has system MIT Kerberos 5 since 10.4"),
unless something is very wrong.
Change-Id: Ic880e59358c7c510de9db29e66dfeee7f4e85b4d
diff --git a/configure.ac b/configure.ac
index dce6892..24cb7a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8540,12 +8540,14 @@ if test "x$enable_postgresql_sdbc" != "xno"; then
if test "$with_krb5" != "no"; then
WITH_KRB5=TRUE
save_LIBS=$LIBS
+ # Not sure whether it makes any sense here to search multiple potential libraries; it is not likely
+ # that the libraries where these functions are located on macOS will change, is it?
AC_SEARCH_LIBS(com_err, [com_err 'com_err -lssl -lcrypto' krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'], [],
- [AC_MSG_ERROR([could not find function 'com_err' required for Kerberos 5, try installing libcom_err devel package])])
+ [AC_MSG_ERROR([could not find function 'com_err' required for Kerberos 5])])
KRB5_LIBS=$LIBS
LIBS=$save_LIBS
AC_SEARCH_LIBS(krb5_sendauth, [krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'], [],
- [AC_MSG_ERROR([could not find function 'krb5_sendauth' required for Kerberos 5, try installing krb5 devel package])])
+ [AC_MSG_ERROR([could not find function 'krb5_sendauth' required for Kerberos 5])])
KRB5_LIBS="$KRB5_LIBS $LIBS"
LIBS=$save_LIBS
fi
More information about the Libreoffice-commits
mailing list