From eefbed85b601624b71d7b3d2857c994d33e62f6b 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 1/2] * lib/gettext.h: Avoid -Wundef warningi 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..b3b1f26f9 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 +#ifdef ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include -- 2.11.0