1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ad,v 1.6 2003/08/31 00:25:21 xtraeme Exp $
--- mp_msg.c.orig 2003-08-31 01:59:09.000000000 +0200
+++ mp_msg.c 2003-08-31 02:01:03.000000000 +0200
@@ -34,6 +34,7 @@
#ifdef MP_DEBUG
fprintf(stdout, "Using GNU internationalization\n");
fprintf(stdout, "Original domain: %s\n", textdomain(NULL));
+#if 0
fprintf(stdout, "Original dirname: %s\n", bindtextdomain(textdomain(NULL),NULL));
#endif
setlocale(LC_ALL, ""); /* set from the environment variables */
@@ -41,9 +42,12 @@
textdomain("mplayer");
#ifdef MP_DEBUG
fprintf(stdout, "Current domain: %s\n", textdomain(NULL));
+#if 0
fprintf(stdout, "Current dirname: %s\n\n", bindtextdomain(textdomain(NULL),NULL));
#endif
#endif
+#endif
+#endif
mp_msg_set_level(MSGL_STATUS);
}
|