Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 134436 | Differences between
and this patch

Collapse All | Expand All

(-)vte-0.12.2.orig/src/reaper.c (+6 lines)
Lines 34-40 Link Here
34
#ifdef HAVE_LOCALE_H
34
#ifdef HAVE_LOCALE_H
35
#include <locale.h>
35
#include <locale.h>
36
#endif
36
#endif
37
38
#ifdef ENABLE_NLS
37
#include <glib/gi18n-lib.h>
39
#include <glib/gi18n-lib.h>
40
#else
41
#define _(String) String
42
#define bindtextdomain(package,dir)
43
#endif
38
44
39
static VteReaper *singleton_reaper = NULL;
45
static VteReaper *singleton_reaper = NULL;
40
struct reaper_info {
46
struct reaper_info {
(-)vte-0.12.2.orig/src/vte.c (-1 / +1 lines)
Lines 9557-9563 vte_terminal_class_init(VteTerminalClass Link Here
9557
#endif
9557
#endif
9558
9558
9559
	bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
9559
	bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
9560
#ifdef HAVE_DECL_BIND_TEXTDOMAIN_CODESET
9560
#if HAVE_DECL_BIND_TEXTDOMAIN_CODESET
9561
	bind_textdomain_codeset(PACKAGE, "UTF-8");
9561
	bind_textdomain_codeset(PACKAGE, "UTF-8");
9562
#endif
9562
#endif
9563
9563
(-)vte-0.12.2.orig/src/vtebg.c (+5 lines)
Lines 25-31 Link Here
25
#include "marshal.h"
25
#include "marshal.h"
26
#include "vtebg.h"
26
#include "vtebg.h"
27
27
28
#ifdef ENABLE_NLS
28
#include <glib/gi18n-lib.h>
29
#include <glib/gi18n-lib.h>
30
#else
31
#define _(String) String
32
#define bindtextdomain(package,dir)
33
#endif
29
34
30
struct VteBgPrivate {
35
struct VteBgPrivate {
31
	GList *cache;
36
	GList *cache;

Return to bug 134436