summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--support/ChangeLog5
-rw-r--r--support/poptint.h6
2 files changed, 6 insertions, 5 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index bd1b2eee..838c49a4 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,8 @@
+1999-02-17 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
+
+ * poptint.h: Removed the suspicious `#ifdef HAVE_DGETTEXT...'
+ switch. Now `progname --help' messages should be translated.
+
1998-12-24 Jeff Garzik <jgarzik@pobox.com>
* poptparse.[ch]: poptParseArgvString cleanups...
diff --git a/support/poptint.h b/support/poptint.h
index 8fc6a84c..57dd839b 100644
--- a/support/poptint.h
+++ b/support/poptint.h
@@ -49,14 +49,10 @@ struct poptContext_s {
#ifdef HAVE_GETTEXT
#define _(foo) gettext(foo)
-#else
-#define _(foo) (foo)
-#endif
-
-#ifdef HAVE_DGETTEXT
#define D_(dom, str) dgettext(dom, str)
#define POPT_(foo) D_("popt", foo)
#else
+#define _(foo) (foo)
#define POPT_(foo) (foo)
#define D_(dom, str) (str)
#endif