mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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.
This commit is contained in:
parent
240f494aa7
commit
70211451be
1 changed files with 11 additions and 3 deletions
|
@ -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__ */
|
||||
|
|
Loading…
Reference in a new issue