Remove warning about g_print, etc, encoding.
[platform/upstream/glib.git] / README
1 General Information
2 ===================
3
4 This is GLib version 2.0.0. GLib is the low-level core
5 library that forms the basis for projects such as GTK+ and GNOME. It
6 provides data structure handling for C, portability wrappers, and
7 interfaces for such runtime functionality as an event loop, threads,
8 dynamic loading, and an object system.
9
10 The official ftp site is:
11   ftp://ftp.gtk.org/pub/gtk
12
13 The official web site is:
14   http://www.gtk.org/
15
16 Information about mailing lists can be found at
17   http://www.gtk.org/mailinglists.html
18
19 To subscribe: mail -s subscribe gtk-list-request@gnome.org < /dev/null
20 (Send mail to gtk-list-request@gnome.org with the subject "subscribe")
21
22 Installation
23 ============
24
25 See the file 'INSTALL'
26
27 Notes about GLib-2.0.1
28 ======================
29
30 * On systems without the libintl from GNU gettext() or a recent version
31   of the GNU C library, the encoding of translated error messages will be 
32   incorrect (they should be in UTF-8). A workaround for this is to install 
33   GNU gettext and use that libintl. This is expected to be fixed in GLib-2.0.2.
34   Application programmers should not call g_locale_to_utf8() on these
35   strings.
36
37 How to report bugs
38 ==================
39
40 Bugs should be reported to the GNOME bug tracking system. 
41 (http://bugzilla.gnome.org, product glib.) You will need
42 to create an account for yourself.
43
44 In the bug report please include:
45
46 * Information about your system. For instance:
47
48    - What operating system and version
49    - For Linux, what version of the C library
50
51   And anything else you think is relevant.
52
53 * How to reproduce the bug. 
54
55   If you can reproduce it with the testgtk program that is built 
56   in the gtk/ subdirectory, that will be most convenient.  Otherwise, 
57   please include a short test program that exhibits the behavior. 
58   As a last resort, you can also provide a pointer to a larger piece 
59   of software that can be downloaded.
60
61 * If the bug was a crash, the exact text that was printed out
62   when the crash occured.
63
64 * Further information such as stack traces may be useful, but
65   is not necessary.
66
67 Patches
68 =======
69
70 Patches should also be submitted to bugzilla.gnome.org. If the
71 patch fixes an existing bug, add the patch as an attachment
72 to that bug report.
73
74 Otherwise, enter a new bug report that describes the patch,
75 and attach the patch to that bug report.
76
77 Bug reports containing patches should include the PATCH keyword
78 in their keyword fields. If the patch adds to or changes the GLib 
79 programming interface, the API keyword should also be included.
80
81 Patches should be in unified diff form. (The -u option to GNU
82 diff.)