Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
17f7ee84
Kaydet (Commit)
17f7ee84
authored
Ara 04, 2012
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Let's try to enable compiling the Bluetooth code for Windows
üst
bf5cf1a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
10 deletions
+24
-10
configure.ac
configure.ac
+24
-10
No files found.
configure.ac
Dosyayı görüntüle @
17f7ee84
...
...
@@ -861,9 +861,8 @@ AC_ARG_ENABLE(sdremote,
AC_ARG_ENABLE(sdremote-bluetooth,
AS_HELP_STRING([--disable-sdremote-bluetooth],
[Determines whether to build sdremote with bluetooth support
Requires: dbus]),
,enable_sdremote_bluetooth=yes)
[Determines whether to build sdremote with bluetooth support.
Requires dbus on Linux.]))
AC_ARG_ENABLE(gconf,
AS_HELP_STRING([--disable-gconf],
...
...
@@ -9335,12 +9334,28 @@ else
fi
AC_SUBST(ENABLE_PACKAGEKIT)
AC_MSG_CHECKING([whether to enable
sd remote
control])
AC_MSG_CHECKING([whether to enable
Impress remote
control])
if test -n "$enable_sdremote" -a "$enable_sdremote" != "no"; then
AC_MSG_RESULT([yes])
ENABLE_SDREMOTE=YES
AC_MSG_CHECKING([whether to enable bluetooth support in sdremote])
if test -n "$enable_sdremote_bluetooth" -a "$enable_sdremote_bluetooth" != "no"; then
AC_MSG_CHECKING([whether to enable Bluetooth support in Impress remote control])
# If not explicitly enabled or disabled, default
if test -z "$enable_sdremote_bluetooth"; then
case "$OS" in
LINUX|WNT)
# Default to yes for these
enable_sdremote_bluetooth=yes
;;
*)
# otherwise no
enable_sdremote_bluetooth=no
;;
esac
fi
# $enable_sdremote_bluetooth is guaranteed non-empty now
if test "$enable_sdremote_bluetooth" != "no"; then
if test "$OS" = "LINUX"; then
if test "$ENABLE_DBUS" = "TRUE"; then
AC_MSG_RESULT([yes])
...
...
@@ -9348,7 +9363,7 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != "no"; then
dnl ===================================================================
dnl Check for system bluez
dnl ===================================================================
AC_MSG_CHECKING([which
b
luetooth header to use])
AC_MSG_CHECKING([which
B
luetooth header to use])
if test "$with_system_bluez" = "yes"; then
AC_MSG_RESULT([external])
AC_CHECK_HEADER(bluetooth/bluetooth.h, [],
...
...
@@ -9362,9 +9377,8 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != "no"; then
ENABLE_SDREMOTE_BLUETOOTH=NO
fi
else
# FIXME: should this really be disabled in everything non-Linux?
AC_MSG_RESULT([no])
ENABLE_SDREMOTE_BLUETOOTH=NO
AC_MSG_RESULT([yes])
ENABLE_SDREMOTE_BLUETOOTH=YES
fi
else
AC_MSG_RESULT([no])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment