From f4e008f8865e51a5cd61f02f5c991cc53f292077 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 28 Nov 2010 00:05:56 +0900 Subject: [PATCH] Moved include of gettext.h to the outside of #ifdef ENABLE_NLS since gettext.h has it inside itself. --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.h b/src/common.h index a41796b7..783d73b3 100644 --- a/src/common.h +++ b/src/common.h @@ -59,8 +59,8 @@ typedef _off_t off_t; #endif #endif // __MINGW32__ +#include "gettext.h" #ifdef ENABLE_NLS -# include "gettext.h" # define _(String) gettext(String) #else // ENABLE_NLS # define _(String) String