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.11.18.orig/src/reaper.c (-6 / +1 lines)
Lines 31-47 Link Here
31
#include "marshal.h"
31
#include "marshal.h"
32
#include "reaper.h"
32
#include "reaper.h"
33
33
34
#ifdef HAVE_LOCALE_H
35
#include <locale.h>
36
#else
37
#define bindtextdomain(package,dir)
38
#endif
39
40
#ifdef ENABLE_NLS
34
#ifdef ENABLE_NLS
41
#include <libintl.h>
35
#include <libintl.h>
42
#define _(String) dgettext(PACKAGE, String)
36
#define _(String) dgettext(PACKAGE, String)
43
#else
37
#else
44
#define _(String) String
38
#define _(String) String
39
#define bindtextdomain(package,dir)
45
#endif
40
#endif
46
41
47
static VteReaper *singleton_reaper = NULL;
42
static VteReaper *singleton_reaper = NULL;
(-)vte-0.11.18.orig/src/vte.c (-1 / +1 lines)
Lines 9531-9537 vte_terminal_class_init(VteTerminalClass Link Here
9531
#endif
9531
#endif
9532
9532
9533
	bindtextdomain(PACKAGE, LOCALEDIR);
9533
	bindtextdomain(PACKAGE, LOCALEDIR);
9534
#ifdef HAVE_DECL_BIND_TEXTDOMAIN_CODESET
9534
#if HAVE_DECL_BIND_TEXTDOMAIN_CODESET
9535
	bind_textdomain_codeset(PACKAGE, "UTF-8");
9535
	bind_textdomain_codeset(PACKAGE, "UTF-8");
9536
#endif
9536
#endif
9537
9537

Return to bug 134436