Merged aria2-0.13.0+1-nls.patch, PATCH#1909984
@@ -1,3 +1,7 @@
+2008-03-15 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
+
+ Merged aria2-0.13.0+1-nls.patch, PATCH#1909984
2008-03-07 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Bump up version number to 0.13.0+1
@@ -52,8 +52,12 @@
#endif
#endif // __MINGW32__
-#include "gettext.h"
-#define _(String) gettext(String)
+#ifdef ENABLE_NLS
+# include "gettext.h"
+# define _(String) gettext(String)
+#else // ENABLE_NLS
+# define _(String) String
+#endif
// use C99 limit macros
#define __STDC_LIMIT_MACROS