From 909e7ca5b660c44ea29be8eb0a514bbfbabc87e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Wed, 5 Apr 2017 15:31:30 +0200 Subject: [PATCH] * lib/gettext.h: Avoid -Wundef warning for ENABLE_NLS --- lib/gettext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gettext.h b/lib/gettext.h index 888e2fc09..85b71cab2 100644 --- a/lib/gettext.h +++ b/lib/gettext.h @@ -19,7 +19,7 @@ #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ -#if ENABLE_NLS +#if defined ENABLE_NLS && ENABLE_NLS != 0 /* Get declarations of GNU message catalog functions. */ # include -- 2.11.0