summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-06-30UpdatesMatthias Clasen1-1/+1
2005-06-30Fix portability issues. (#307064, Morten Welinder)Matthias Clasen5-2/+14
2005-06-30 Matthias Clasen <mclasen@redhat.com> * glib/gstring.c (g_str_hash): Fix portability issues. (#307064, Morten Welinder)
2005-06-30Apply a patch which may make GLib work on BeOS again. (#309157, KianMatthias Clasen9-6/+59
2005-06-30 Matthias Clasen <mclasen@redhat.com> Apply a patch which may make GLib work on BeOS again. (#309157, Kian Duffy) * glib/gmain.c: Update the BeOS includes. * glib/gstdio.c: * glib/gutils.c (g_find_program_in_path): * glib/gbacktrace.c (g_on_error_stack_trace): Use the UNIX implementation on BeOS, as well. * configure.in: Don't put glib 1.0 into G_MODULE_LIBS, even on BeOS.
2005-06-30Include stdlib.hMatthias Clasen2-0/+5
2005-06-30 Matthias Clasen <mclasen@redhat.com> * gmodule-ar.c: Include stdlib.h
2005-06-30UpdatesMatthias Clasen5-0/+32
2005-06-30UpdatesMatthias Clasen9-34/+119
2005-06-28Updated Thai translation.Theppitak Karoonboonyanan2-92/+86
2005-06-28 Theppitak Karoonboonyanan <thep@linux.thai.net> * th.po: Updated Thai translation.
2005-06-27Shut up CVSManish Singh1-0/+3
2005-06-26libtool installs/uninstalls the import library, no need to do itTor Lillqvist6-24/+39
2005-06-26 Tor Lillqvist <tml@novell.com> * Makefile.am: libtool installs/uninstalls the import library, no need to do it ourselves. Do still install/uninstall the .def file, though.
2005-06-26libtool installs/uninstalls the import library, no need to do itTor Lillqvist7-14/+125
2005-06-26 Tor Lillqvist <tml@novell.com> * glib/Makefile.am: libtool installs/uninstalls the import library, no need to do it ourselves. Do still install/uninstall the .def file, though. * glib/gmappedfile.c: Add Win32 implementation. (g_mapped_file_free): Don't mention writable shared mappings in the doc comment. Free the GMappedFile struct. * tests/mapping-test.c (main): No kill() or SIGUSR1 on Win32, use a flag file instead to stop the child. Use g_usleep() instead of sleep().
2005-06-25Updated Slovak translation.Marcel Telka2-52/+69
2005-06-25 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation.
2005-06-25Add an mmap() wrapper called GMappedFile. (#148218, David Schleef, BehdadMatthias Clasen16-1/+595
2005-06-24 Matthias Clasen <mclasen@redhat.com> Add an mmap() wrapper called GMappedFile. (#148218, David Schleef, Behdad Esfahbod) * glib/gmappedfile.[hc]: New files. * configure.in: Check for mmap. * glib/Makefile.am: Add new files. * glib/glib.symbols: Add new functions. * glib/glib.h: Include gmappedfile.h * tests/mapping-test.c: Tests for GMappedFile. * tests/Makefile.am: Add new file.
2005-06-24Add --enable-man.Matthias Clasen4-0/+16
2005-06-24 Matthias Clasen <mclasen@redhat.com> * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): Add --enable-man.
2005-06-24glib/Makefile.am gmodule/Makefile.am Current GNU tools do understand theTor Lillqvist10-25/+48
2005-06-24 Tor Lillqvist <tml@novell.com> * glib/Makefile.am * gmodule/Makefile.am * gobject/Makefile.am: Current GNU tools do understand the PRIVATE keyword. * glib/gfileutils.c (g_mkdir_with_parents): Return error with EINVAL also for empty pathnames. (g_build_pathname_va): Fix typo.
2005-06-24fix language team referenceKwok-Koon Cheung2-138/+143
2005-06-23g_build_filename_va is only use in the G_OS_WIN32 case, so compile itManish Singh5-0/+24
Thu Jun 23 15:52:08 2005 Manish Singh <yosh@gimp.org> * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32 case, so compile it conditionally.
2005-06-23Don't leak memory here.Matthias Clasen6-7/+27
2005-06-23 Matthias Clasen <mclasen@redhat.com> * tests/keyfile-test.c (test_group_remove): Don't leak memory here. * glib/gkeyfile.c (g_key_file_load_from_data_dirs): Don't leak output_path. (#308546, Kjartan Maraas)
2005-06-23Don't leak output_path. (#308546, Kjartan Maraas)Matthias Clasen5-0/+15
2005-06-23 Matthias Clasen <mclasen@redhat.com> * glib/gkeyfile.c (g_key_file_load_from_data_dirs): Don't leak output_path. (#308546, Kjartan Maraas)
2005-06-23Add new functionsMatthias Clasen1-0/+2
2005-06-23Add some language-binding friendly variantsMatthias Clasen8-56/+399
2005-06-22glib/gfileutils.c glib/gfileutils.h glib/glib.symbols Rename g_makepath()Tor Lillqvist8-25/+53
2005-06-22 Tor Lillqvist <tml@novell.com> * glib/gfileutils.c * glib/gfileutils.h * glib/glib.symbols * tests/testglib.c: Rename g_makepath() to g_mkdir_with_parents().
2005-06-22Properly store changes for arrays. (#308528, Roger Leigh)Matthias Clasen5-6/+14
2005-06-22 Matthias Clasen <mclasen@redhat.com> * glib/goption.c (parse_arg): Properly store changes for arrays. (#308528, Roger Leigh)
2005-06-22Pass the option name also in the NO_ARG case. (#308602, Masatake YAMATO)Matthias Clasen5-2/+35
2005-06-22 Matthias Clasen <mclasen@redhat.com> * glib/goption.c (parse_short_option, parse_long_option): Pass the option name also in the NO_ARG case. (#308602, Masatake YAMATO)
2005-06-22New function. Creates a directory including intermediate parentTor Lillqvist8-13/+233
2005-06-22 Tor Lillqvist <tml@novell.com> * glib/gfileutils.c (g_makepath): New function. Creates a directory including intermediate parent directories as needed. (#60509) * glib/gfileutils.h: Declare it. * glib/glib.symbols: Add it. * tests/testglib.c: Test it.
2005-06-22Add Since: 2.8 to g_get_host_name().Tor Lillqvist1-0/+2
2005-06-22New function. Returns the machine's name, or one of its names. DocumentTor Lillqvist8-0/+101
2005-06-22 Tor Lillqvist <tml@novell.com> * glib/gutils.c (g_get_host_name): New function. Returns the machine's name, or one of its names. Document that it is best-effort only, and not guaranteed to be unique or anything. (g_get_any_init): Get the host name here. On Unix use gethostname(), on Windows use GetComputerName(). (#5200) * glib/gutils.h * glib/glib.symbols: Add here, too. * tests/testglib.c: Test it.
2005-06-20Translation updated.Priit Laes2-0/+5
2005-06-21 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated.
2005-06-20Avoid a warning. (#308295, Murray Cumming).Matthias Clasen2-3/+8
2005-06-19 Matthias Clasen <mclasen@redhat.com> * gparam.h (GParamFlags): Avoid a warning. (#308295, Murray Cumming).
2005-06-18Add G_OPTION_FLAG_NO_ARG and G_OPTION_FLAG_FILENAME to allow greaterMatthias Clasen9-13/+153
2005-06-18 Matthias Clasen <mclasen@redhat.com> * glib/goption.h: * glib/goption.c: Add G_OPTION_FLAG_NO_ARG and G_OPTION_FLAG_FILENAME to allow greater control of G_OPTION_ARG_CALLBACK options. (#302632, Dan Winship) * tests/option-test.c: test callback args
2005-06-17Updated Canadian English translation.Adam Weinberger2-4/+8
2005-06-17 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation.
2005-06-16Translation updated by Tino Meinen.Vincent van Adrighem2-138/+143
2005-06-16 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated by Tino Meinen.
2005-06-16fix typo reported by Hong Gang XU.Mathieu Lacage2-1/+5
2005-06-16 Mathieu Lacage <mathieu@gnome.org> * gobject/tut_gtype.xml: fix typo reported by Hong Gang XU.
2005-06-15Updated Slovak translation.Marcel Telka2-158/+163
2005-06-15 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation.
2005-06-14Added 'th' (Thai) to ALL_LINGUAS. Added Thai translation.Theppitak Karoonboonyanan7-1/+707
2005-06-14 Theppitak Karoonboonyanan <thep@linux.thai.net> * configure.in: Added 'th' (Thai) to ALL_LINGUAS. * po/th.po: Added Thai translation.
2005-06-14updated by rranajnRajesh Ranjan1-201/+201
2005-06-13Updated Spanish translation.Francisco Javier F. Serrador2-139/+144
2005-06-13 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation.
2005-06-13Re-add G_PARAM_PRIVATE as a deprecated name for bit 5, since some languageMatthias Clasen2-1/+10
2005-06-13 Matthias Clasen <mclasen@redhat.com> * gparam.h (GParamFlags): Re-add G_PARAM_PRIVATE as a deprecated name for bit 5, since some language bindings have it bound.
2005-06-13Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2-252/+279
2005-06-13 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
2005-06-12Updated Norwegian translation. Same as above.Terance Sola3-398/+401
2005-06-13 Terance Sola <terance@lyse.net> * nb.po: Updated Norwegian translation. * no.po: Same as above.
2005-06-12Updated Czech translation.Miloslav Trmac2-138/+143
2005-06-12 Miloslav Trmac <mitr@volny.cz> * cs.po: Updated Czech translation.
2005-06-11Updated Danish translation.Martin Willemoes Hansen2-139/+144
* da.po: Updated Danish translation.
2005-06-10Translation updated.Priit Laes2-250/+223
2005-06-10 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated.
2005-06-10Post-release version bumpMatthias Clasen5-2/+10
2005-06-102.7.0GLIB_2_7_0Matthias Clasen85-8321/+11957
2005-06-10UpdatesMatthias Clasen5-0/+65
2005-06-10Forgotten log entryMatthias Clasen4-0/+12
2005-06-10Forgotten fileMatthias Clasen1-6/+21
2005-06-10Minor stylistic fixMatthias Clasen1-4/+4
2005-06-10Add g_chdirMatthias Clasen2-0/+3
2005-06-09 Matthias Clasen <mclasen@redhat.com> * glib/glib-sections.txt: Add g_chdir
2005-06-09Set errno to 0 before calling strtol. (#306388, Morten Welinder)Matthias Clasen5-5/+30
2005-06-09 Matthias Clasen <mclasen@redhat.com> * glib/goption.c (parse_int): Set errno to 0 before calling strtol. (#306388, Morten Welinder)