File tree Expand file tree Collapse file tree 7 files changed +3
-35
lines changed Expand file tree Collapse file tree 7 files changed +3
-35
lines changed Original file line number Diff line number Diff line change @@ -103,20 +103,6 @@ PKG_CHECK_MODULES(GDMUSER, dbus-glib-1 gtk+-3.0)
103
103
PKG_CHECK_MODULES(TRAY, clutter-1.0 gtk+-3.0)
104
104
PKG_CHECK_MODULES(DESKTOP_SCHEMAS, cinnamon-desktop >= 2.4.0)
105
105
106
- AC_MSG_CHECKING ( [ for bluetooth support] )
107
- PKG_CHECK_EXISTS([ gnome-bluetooth-1.0 >= 3.1.0] ,
108
- [ BLUETOOTH_DIR=`$PKG_CONFIG --variable=applet_libdir gnome-bluetooth-1.0`
109
- BLUETOOTH_LIBS=`$PKG_CONFIG --variable=applet_libs gnome-bluetooth-1.0`
110
- AC_SUBST ( [ BLUETOOTH_LIBS] ,[ "$BLUETOOTH_LIBS"] )
111
- AC_SUBST ( [ BLUETOOTH_DIR] ,[ "$BLUETOOTH_DIR"] )
112
- AC_DEFINE_UNQUOTED ( [ BLUETOOTH_DIR] ,[ "$BLUETOOTH_DIR"] ,[ Path to installed GnomeBluetooth typelib and library] )
113
- AC_DEFINE ( [ HAVE_BLUETOOTH] ,[ 1] ,[ Define if you have libgnome-bluetooth-applet] )
114
- AC_SUBST ( [ HAVE_BLUETOOTH] ,[ 1] )
115
- AC_MSG_RESULT ( [ yes] ) ] ,
116
- [ AC_DEFINE ( [ HAVE_BLUETOOTH] ,[ 0] )
117
- AC_SUBST ( [ HAVE_BLUETOOTH] ,[ 0] )
118
- AC_MSG_RESULT ( [ no] ) ] )
119
-
120
106
MUFFIN_GIR_DIR=`$PKG_CONFIG --variable=girdir libmuffin`
121
107
MUFFIN_TYPELIB_DIR=`$PKG_CONFIG --variable=typelibdir libmuffin`
122
108
AC_SUBST ( MUFFIN_GIR_DIR )
Original file line number Diff line number Diff line change @@ -12,14 +12,12 @@ Build-Depends: debhelper (>= 9),
12
12
gvfs-backends,
13
13
gobject-introspection (>= 0.9.2),
14
14
gir1.2-json-1.0,
15
- gnome-bluetooth (>= 3.1.0),
16
15
gnome-common,
17
16
libcinnamon-desktop-dev (>= 3.5.0),
18
17
libcroco3-dev (>= 0.6.2),
19
18
libdbus-glib-1-dev,
20
19
libgirepository1.0-dev (>= 0.9.2),
21
20
libglib2.0-dev (>= 2.37.3),
22
- libgnome-bluetooth-dev (>= 3.1.0),
23
21
libcinnamon-menu-3-dev,
24
22
libgstreamer1.0-dev,
25
23
libgtk-3-dev (>= 3.9.12),
@@ -68,7 +66,6 @@ Depends: cinnamon-common (= ${source:Version}),
68
66
gir1.2-accountsservice-1.0,
69
67
gir1.2-cinnamondesktop-3.0 (>= 3.5.0),
70
68
gir1.2-gkbd-3.0,
71
- gir1.2-gnomebluetooth-1.0,
72
69
gir1.2-keybinder-3.0,
73
70
gir1.2-networkmanager-1.0,
74
71
gir1.2-polkit-1.0,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,7 +6,5 @@ var PACKAGE_NAME = '@PACKAGE_NAME@';
6
6
var PACKAGE_VERSION = '@PACKAGE_VERSION@' ;
7
7
/* The version of GJS we're linking to */
8
8
var GJS_VERSION = '@GJS_VERSION@' ;
9
- /* 1 if gnome-bluetooth is available, 0 otherwise */
10
- var HAVE_BLUETOOTH = @HAVE_BLUETOOTH @;
11
9
/* The system TLS CA list */
12
10
var CINNAMON_SYSTEM_CA_FILE = '@CINNAMON_SYSTEM_CA_FILE@' ;
Original file line number Diff line number Diff line change 1
- NULL =
1
+ NULL =
2
2
BUILT_SOURCES =
3
3
CLEANFILES =
4
4
EXTRA_DIST =
@@ -215,7 +215,6 @@ libcinnamon_la_LDFLAGS = $(WARN_LDFLAGS) -avoid-version
215
215
libcinnamon_la_LIBADD = \
216
216
-lm \
217
217
$(CINNAMON_LIBS ) \
218
- $(BLUETOOTH_LIBS ) \
219
218
libst-1.0.la \
220
219
libtray.la \
221
220
$(NULL )
@@ -228,7 +227,7 @@ Cinnamon_0_1_gir_CFLAGS = $(libcinnamon_la_CPPFLAGS) -I $(srcdir)
228
227
Cinnamon_0_1_gir_LIBS = libcinnamon.la
229
228
Cinnamon_0_1_gir_FILES = $(libcinnamon_la_gir_sources )
230
229
Cinnamon_0_1_gir_SCANNERFLAGS = $(WARN_SCANNERFLAGS ) --include-uninstalled=$(builddir ) /St-1.0.gir \
231
- --add-include-path=$(MUFFIN_GIR_DIR ) $( if $( BLUETOOTH_DIR ) ,-L $( BLUETOOTH_DIR ) ,)
230
+ --add-include-path=$(MUFFIN_GIR_DIR )
232
231
INTROSPECTION_GIRS += Cinnamon-0.1.gir
233
232
CLEANFILES += Cinnamon-0.1.gir
234
233
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ center_pointer_on_screen ()
249
249
Display * dpy ;
250
250
Window root_window ;
251
251
Screen * screen ;
252
-
252
+
253
253
dpy = XOpenDisplay (0 );
254
254
root_window = XRootWindow (dpy , 0 );
255
255
XSelectInput (dpy , root_window , KeyReleaseMask );
@@ -310,9 +310,6 @@ main (int argc, char **argv)
310
310
cinnamon_perf_log_init ();
311
311
312
312
g_irepository_prepend_search_path (CINNAMON_PKGLIBDIR );
313
- #if HAVE_BLUETOOTH
314
- g_irepository_prepend_search_path (BLUETOOTH_DIR );
315
- #endif
316
313
317
314
/* Disable debug spew from various libraries */
318
315
g_log_set_handler ("Cvc" , G_LOG_LEVEL_DEBUG ,
Original file line number Diff line number Diff line change @@ -129,14 +129,6 @@ main(int argc, char **argv)
129
129
clutter_stage_set_title (CLUTTER_STAGE (stage ), title );
130
130
g_free (title );
131
131
132
- #if HAVE_BLUETOOTH
133
- /* The module imports are all so intertwined that if the test
134
- * imports anything in js/ui, it will probably eventually end up
135
- * pulling in ui/status/bluetooth.js. So we need this.
136
- */
137
- g_irepository_prepend_search_path (BLUETOOTH_DIR );
138
- #endif
139
-
140
132
/* evaluate the script */
141
133
error = NULL ;
142
134
if (!gjs_context_eval (js_context , script , len ,
You can’t perform that action at this time.
0 commit comments