summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-03-22 18:01:27 +0200
committerStefan Kost <ensonic@users.sf.net>2010-03-22 18:01:27 +0200
commit70211451be4ad2fa14160c1a4078842ea7a8c04a (patch)
tree2bfeb2e414b2e96a1e382f505e24c7576830e608
parent240f494aa7171e8ba08addc43e4b458b73c1615b (diff)
i18n: fix the build
Don't include locale.h which we include in gettext.h if needed. Guard the include like we do in the simillar headers in core.
-rw-r--r--gst-libs/gst/gst-i18n-plugin.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/gst-libs/gst/gst-i18n-plugin.h b/gst-libs/gst/gst-i18n-plugin.h
index 2c37a6150..dc16d47e6 100644
--- a/gst-libs/gst/gst-i18n-plugin.h
+++ b/gst-libs/gst/gst-i18n-plugin.h
@@ -22,16 +22,24 @@
#ifndef __GST_I18N_PLUGIN_H__
#define __GST_I18N_PLUGIN_H__
-#include <locale.h> /* some people need it and some people don't */
-#include "gettext.h" /* included with gettext distribution and copied */
-
#ifndef GETTEXT_PACKAGE
#error You must define GETTEXT_PACKAGE before including this header.
#endif
+#ifdef ENABLE_NLS
+
+#include "gettext.h" /* included with gettext distribution and copied */
+
/* we want to use shorthand _() for translating and N_() for marking */
#define _(String) dgettext (GETTEXT_PACKAGE, String)
#define N_(String) gettext_noop (String)
/* FIXME: if we need it, we can add Q_ as well, like in glib */
+#else
+#define _(String) String
+#define N_(String) String
+#define ngettext(Singular,Plural,Count) ((Count>1)?Plural:Singular)
+
+#endif
+
#endif /* __GST_I18N_PLUGIN_H__ */