b365eb9936
The screencast D-Bus service that is used for the recordings is only installed if the necessary gstreamer and pipewire dependencies are found at build time. The screencast button cannot work when the service is missing, so don't show it in the first place. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2450 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2285>
24 lines
902 B
JavaScript
24 lines
902 B
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
/* The name of this package (not localized) */
|
|
var PACKAGE_NAME = '@PACKAGE_NAME@';
|
|
/* The version of this package */
|
|
var PACKAGE_VERSION = '@PACKAGE_VERSION@';
|
|
/* 1 if gnome-bluetooth is available, 0 otherwise */
|
|
var HAVE_BLUETOOTH = @HAVE_BLUETOOTH@;
|
|
/* 1 if networkmanager is available, 0 otherwise */
|
|
var HAVE_NETWORKMANAGER = @HAVE_NETWORKMANAGER@;
|
|
/* 1 if soup2 should be used instead of soup3, 0 otherwise */
|
|
var HAVE_SOUP2 = @HAVE_SOUP2@;
|
|
/* 1 if recorder is enabled, 0 otherwise */
|
|
var HAVE_RECORDER = @HAVE_RECORDER@;
|
|
/* gettext package */
|
|
var GETTEXT_PACKAGE = '@GETTEXT_PACKAGE@';
|
|
/* locale dir */
|
|
var LOCALEDIR = '@datadir@/locale';
|
|
/* other standard directories */
|
|
var LIBEXECDIR = '@libexecdir@';
|
|
var PKGDATADIR = '@datadir@/@PACKAGE_NAME@';
|
|
/* g-i package versions */
|
|
var LIBMUTTER_API_VERSION = '@LIBMUTTER_API_VERSION@'
|