diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-04-05 17:15:25 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-04-05 17:15:25 +0200 |
commit | ccee2cdbe8485ce8742f0dd99d3cfa642ff70a48 (patch) | |
tree | 5800d67b33fb02c1dd5b2054ce45b96d996b78a3 /src/Resources.vala | |
parent | b4a00487d7666a3f142e613b3c094952bfb7f2ec (diff) | |
parent | b45d7a86484312692d5a7ac5bf98bc33fcd77f0d (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/Resources.vala')
-rw-r--r-- | src/Resources.vala | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Resources.vala b/src/Resources.vala index 801305c..f9fa875 100644 --- a/src/Resources.vala +++ b/src/Resources.vala @@ -4,25 +4,13 @@ * See the COPYING file in this distribution. */ -// defined by ./configure or Makefile and included by gcc -D -extern const string _PREFIX; -extern const string _VERSION; -extern const string GETTEXT_PACKAGE; -extern const string _LIB; -extern const string _LIBEXECDIR; -extern const string? _GIT_VERSION; - namespace Resources { public const string APP_TITLE = "Shotwell"; public const string APP_LIBRARY_ROLE = _("Photo Manager"); public const string APP_DIRECT_ROLE = _("Photo Viewer"); public const string APP_VERSION = _VERSION; -#if _GITVERSION public const string? GIT_VERSION = _GIT_VERSION; -#else - public const string? GIT_VERSION = null; -#endif public const string COPYRIGHT = _("Copyright 2016 Software Freedom Conservancy Inc."); public const string APP_GETTEXT_PACKAGE = GETTEXT_PACKAGE; |