mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
pbutils: Fix compilation of last commit
This commit is contained in:
parent
006c7181ed
commit
783e450a60
2 changed files with 6 additions and 2 deletions
|
@ -26,6 +26,7 @@
|
|||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include "encoding-target.h"
|
||||
#include "pbutils-private.h"
|
||||
|
||||
/* Documented in encoding-profile.c */
|
||||
|
||||
|
|
|
@ -57,11 +57,12 @@
|
|||
#endif
|
||||
|
||||
#include "pbutils.h"
|
||||
#include "pbutils-private.h"
|
||||
|
||||
#include "gst/gst-i18n-plugin.h"
|
||||
|
||||
static void
|
||||
_init_locale_text_domain (void)
|
||||
static gpointer
|
||||
_init_locale_text_domain (gpointer data)
|
||||
{
|
||||
#ifdef ENABLE_NLS
|
||||
GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
|
||||
|
@ -69,6 +70,8 @@ _init_locale_text_domain (void)
|
|||
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
||||
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||
#endif
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue