mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Disable i18n if it's not there - this fixes build issues with older versions of libgnomeui, i18n-tools, etc.
Original commit message from CVS: Disable i18n if it's not there - this fixes build issues with older versions of libgnomeui, i18n-tools, etc.
This commit is contained in:
parent
cb853c1bcf
commit
858d9bde08
1 changed files with 3 additions and 1 deletions
|
@ -392,9 +392,11 @@ init_pre (void)
|
||||||
}
|
}
|
||||||
/* we need threading to be enabled right here */
|
/* we need threading to be enabled right here */
|
||||||
_gst_debug_init();
|
_gst_debug_init();
|
||||||
|
|
||||||
|
#ifdef ENABLE_NLS
|
||||||
bindtextdomain (GETTEXT_PACKAGE, GST_LOCALEDIR);
|
bindtextdomain (GETTEXT_PACKAGE, GST_LOCALEDIR);
|
||||||
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||||
|
#endif /* ENABLE_NLS */
|
||||||
|
|
||||||
#ifndef GST_DISABLE_REGISTRY
|
#ifndef GST_DISABLE_REGISTRY
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue