blob: 092f64ad301e5940435f74cdb3f322d18fc83209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- ./inc/nls.h.orig
+++ ./inc/nls.h
@@ -1,11 +1,10 @@
#ifndef NLS_H
#define NLS_H
-#include <libintl.h>
-
#ifdef NO_LIBINTL_OR_GETTEXT
#define _(String) (String)
#else
+#include <libintl.h>
#define _(String) gettext(String)
#endif
#define gettext_noop(String) (String)
|