diff options
author | rbuj <[email protected]> | 2021-01-27 18:03:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-08 20:39:25 +0100 |
commit | 5af31646583faedf3d16746f19e4d7d679852ac4 (patch) | |
tree | fd63bcbdb1a45bc8dbe08ce4c772eaea0c6e49f8 /mate-screenshot/src | |
parent | 1397f530214fe111405d98687d4b50b4ad23da45 (diff) | |
download | mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.bz2 mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'mate-screenshot/src')
-rw-r--r-- | mate-screenshot/src/mate-screenshot.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mate-screenshot/src/mate-screenshot.c b/mate-screenshot/src/mate-screenshot.c index c888d4d7..09bf2e8a 100644 --- a/mate-screenshot/src/mate-screenshot.c +++ b/mate-screenshot/src/mate-screenshot.c @@ -31,7 +31,9 @@ #include <unistd.h> #include <stdlib.h> #include <errno.h> +#ifdef ENABLE_NLS #include <locale.h> +#endif /* ENABLE_NLS */ #include <glib/gi18n.h> #include <gio/gio.h> #include <pwd.h> @@ -1321,10 +1323,12 @@ main (int argc, char *argv[]) { NULL }, }; +#ifdef ENABLE_NLS setlocale (LC_ALL, ""); bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ context = g_option_context_new (_("Take a picture of the screen")); g_option_context_set_ignore_unknown_options (context, FALSE); |