From 5df25d58712438f63840d7318cbb10ce483af07c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 21 Oct 2001 09:01:24 +0000 Subject: [PATCH] (_): Honor the setting of ENABLE_NLS. Otherwise, this code would end up calling gettext even in packages built with --disable-nls. --- lib/obstack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/obstack.c b/lib/obstack.c index 7b1206c13..0244da383 100644 --- a/lib/obstack.c +++ b/lib/obstack.c @@ -459,7 +459,7 @@ _obstack_memory_used (h) /* Define the error handler. */ # ifndef _ -# if defined HAVE_LIBINTL_H || defined _LIBC +# if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC # include # ifndef _ # define _(Str) gettext (Str) -- 2.11.0