diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-02-15 17:34:39 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-15 19:49:23 +0100 |
commit | 15c0f22c31a46ce37e98f9394e6a8e0bc92495f9 (patch) | |
tree | 1658cf2a1c388d4752b1cf7275bd6ddfacde56c0 | |
parent | 5f90c8bc0270f692a38073b1e4aa9e3b6ba106ed (diff) |
Do not silently ignore an explicit --enable-sdremote-bluetooth
Change-Id: I362d9402f3123f852a4342ce5f8b604913e11ece
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88762
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d7237b8dc061..ce41a7ebaf80 100644 --- a/configure.ac +++ b/configure.ac @@ -10838,6 +10838,9 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != "no"; then if test $OS = MACOSX && test "$MACOSX_SDK_VERSION" -ge 101500; then # The Bluetooth code doesn't compile with macOS SDK 10.15 + if test "$enable_sdremote_bluetooth" = yes; then + AC_MSG_ERROR([macOS SDK $with_macosx_sdk does not currently support --enable-sdremote-bluetooth]) + fi enable_sdremote_bluetooth=no fi # If not explicitly enabled or disabled, default |