6200daa5bb
Add an entry in config.js.in for PACKAGE_VERSION and GJS_VERSION, to be used by the notification daemon and in the future by the extension system. https://bugzilla.gnome.org/show_bug.cgi?id=639255
11 lines
391 B
JavaScript
11 lines
391 B
JavaScript
/* mode: js2; indent-tabs-mode: nil; tab-size: 4 */
|
|
/* The name of this package (not localized) */
|
|
const PACKAGE_NAME = '@PACKAGE_NAME@';
|
|
/* The version of this package */
|
|
const PACKAGE_VERSION = '@PACKAGE_VERSION@';
|
|
/* The version of GJS we're linking to */
|
|
const GJS_VERSION = '@GJS_VERSION@';
|
|
/* 1 if gnome-bluetooth is available, 0 otherwise */
|
|
const HAVE_BLUETOOTH = @HAVE_BLUETOOTH@;
|
|
|