2011-09-28 13:16:26 +00:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2011-01-11 21:34:09 +00:00
|
|
|
/* The name of this package (not localized) */
|
2017-07-18 17:47:27 +00:00
|
|
|
var PACKAGE_NAME = '@PACKAGE_NAME@';
|
2011-01-11 21:34:09 +00:00
|
|
|
/* The version of this package */
|
2017-07-18 17:47:27 +00:00
|
|
|
var PACKAGE_VERSION = '@PACKAGE_VERSION@';
|
2011-01-11 21:34:09 +00:00
|
|
|
/* 1 if gnome-bluetooth is available, 0 otherwise */
|
2017-07-18 17:47:27 +00:00
|
|
|
var HAVE_BLUETOOTH = @HAVE_BLUETOOTH@;
|
2014-02-11 22:20:15 +00:00
|
|
|
/* 1 if networkmanager is available, 0 otherwise */
|
2017-07-18 17:47:27 +00:00
|
|
|
var HAVE_NETWORKMANAGER = @HAVE_NETWORKMANAGER@;
|
2022-04-27 13:08:17 +00:00
|
|
|
/* 1 if soup2 should be used instead of soup3, 0 otherwise */
|
2021-08-29 12:24:42 +00:00
|
|
|
var HAVE_SOUP2 = @HAVE_SOUP2@;
|
2022-04-27 13:33:40 +00:00
|
|
|
/* 1 if recorder is enabled, 0 otherwise */
|
|
|
|
var HAVE_RECORDER = @HAVE_RECORDER@;
|
2012-01-19 02:21:56 +00:00
|
|
|
/* gettext package */
|
2017-07-18 17:47:27 +00:00
|
|
|
var GETTEXT_PACKAGE = '@GETTEXT_PACKAGE@';
|
2012-01-19 02:21:56 +00:00
|
|
|
/* locale dir */
|
2017-07-18 17:47:27 +00:00
|
|
|
var LOCALEDIR = '@datadir@/locale';
|
2012-02-11 17:44:35 +00:00
|
|
|
/* other standard directories */
|
2017-07-18 17:47:27 +00:00
|
|
|
var LIBEXECDIR = '@libexecdir@';
|
2018-09-06 00:04:47 +00:00
|
|
|
var PKGDATADIR = '@datadir@/@PACKAGE_NAME@';
|
2016-11-28 04:54:38 +00:00
|
|
|
/* g-i package versions */
|
2017-07-18 17:47:27 +00:00
|
|
|
var LIBMUTTER_API_VERSION = '@LIBMUTTER_API_VERSION@'
|