summaryrefslogtreecommitdiffstats
path: root/tools/gpgconf.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2004-04-06 12:01:04 +0200
committerWerner Koch <wk@gnupg.org>2004-04-06 12:01:04 +0200
commitd84d632583c1c61180d40ce9b91f185160ab02d6 (patch)
tree95f50ee6802e523b69a99d7bd49405e715923e55 /tools/gpgconf.c
parentAdd STATUS_NEWSIG (diff)
downloadgnupg2-d84d632583c1c61180d40ce9b91f185160ab02d6.tar.xz
gnupg2-d84d632583c1c61180d40ce9b91f185160ab02d6.zip
* configure.ac: Require libgcrypt 1.1.94.
Introduce PACKAGE_GT and set it to gnupg2. * gpg-agent.c (main): Use new libgcrypt thread library register scheme. * Makevars (DOMAIN): Init from PACKAGE_GT
Diffstat (limited to '')
-rw-r--r--tools/gpgconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gpgconf.c b/tools/gpgconf.c
index aab1397c7..7aca335fa 100644
--- a/tools/gpgconf.c
+++ b/tools/gpgconf.c
@@ -103,7 +103,7 @@ static void
i18n_init(void)
{
#ifdef USE_SIMPLE_GETTEXT
- set_gettext_file (PACKAGE);
+ set_gettext_file (PACKAGE_GT);
#else
# ifdef ENABLE_NLS
# ifdef HAVE_LC_MESSAGES
@@ -112,8 +112,8 @@ i18n_init(void)
# else
setlocale (LC_ALL, "" );
# endif
- bindtextdomain (PACKAGE, LOCALEDIR);
- textdomain (PACKAGE);
+ bindtextdomain (PACKAGE_GT, LOCALEDIR);
+ textdomain (PACKAGE_GT);
# endif
#endif
}