Skip to content
  1. Oct 12, 2016
  2. Sep 30, 2011
  3. Jun 24, 2011
  4. Jun 11, 2011
  5. Apr 02, 2011
  6. Mar 31, 2011
  7. Mar 28, 2011
  8. Jan 03, 2011
  9. Dec 31, 2010
  10. Dec 13, 2010
  11. Dec 01, 2010
  12. Nov 30, 2010
    • Chun-wei Fan's avatar
      Bug631102: Updates to the MSVC 2008 Files · 46205a2d
      Chun-wei Fan authored
      -README.txt: to tell people on the required usage of ZLib
       (which was in effect some releases ago) and optional usage
       of an external PCRE build
      
      -gio.vcprojin: Made up for the required source files that were
       missed
      
      -glib.sln: Added additional configurations to use external copy of
       PCRE and ensure "install" of test-glib.exe
      
      -glib.vcprojin: Added additional configurations to use external
       copy of PCRE, updated the section for compiling the bindled
       PCRE as the file layout has changed here, and updated on the
       .def generation on x64 systems (some symbols are not used/compiled
       on x64 systems)
      
      -glib.vsprops: Reflected on change of location of
       glibconfig.h(.win32), the addtitional configuration of the usage
       of an external copy of PCRE, the installation of testglib.exe,
       made up for missed headers for GLib/GIO that are required for
       installation and updated on the .def generation on x64 systems
       (some symbols are currently excluded on x64) for GLib/GModule
      
      -gmodule.vcproj: Updated .def file generation on x64 systems
       as some symbols are not used/compiled on x64 systems
      46205a2d
    • Chun-wei Fan's avatar
      Bug635093: Deprecation check in tests/testglib.c · cae0b1c5
      Chun-wei Fan authored
      The Relation API in glib/grel.h has been marked as
      deprecated (G_DISABLE_DEPRECATED), so added check for
      that macro in this source file and added label to indicate
      deprecation
      cae0b1c5
    • Chun-wei Fan's avatar
      Bug 635093: Fixed C99-declarations & typo in GIO · fa1fa04a
      Chun-wei Fan authored
      -gio/gregistrysettingsbackend.c:
       Fixed C99-style variable declarations
       Fixed typo: g_message_win32_error (result, "gregistrybackend:
                   setting value %s\%s\\%s failed.\n",
      ->
                   g_message_win32_error (result, "gregistrybackend:
                   setting value %s\\%s\\%s failed.\n",
      
      -gio/gdbusmessage.c:
       Moved G_STATIC_ASSERT(sizeof (gdouble) == sizeof (guint64));
       to just after the variable declarations of the block to avoid
       C99-style variable declaration
      fa1fa04a
    • Chun-wei Fan's avatar
      Bug635093: Moved/Added macro checks for MSVC build · 0dc7ae3b
      Chun-wei Fan authored
      -glib/gtimer.c: some compilers do not have <sys/time.h>,
       so check for that from config.h(.win32)
      -glib/gdatetime.c, glib/gmessages.c, glib/gscanner.c:
       move G_OS_WIN32 check after GLib header includes so
       that they can be checked correctly on MSVC too.
      0dc7ae3b
  13. Nov 14, 2010
  14. Nov 13, 2010
  15. Nov 12, 2010
  16. Oct 31, 2010
  17. Oct 28, 2010
  18. Oct 27, 2010
  19. Oct 17, 2010
  20. Oct 07, 2010
    • Bruce Cowan's avatar
      Updated British English translation · 286500db
      Bruce Cowan authored
      286500db
    • Tor Lillqvist's avatar
      Don't call close() on -1 · e01a20ce
      Tor Lillqvist authored
      Of course, a proper implementation of close() will just ignore an
      invalid parameter silently, and set errno. But apparently the "debug"
      version of the Microsoft C library generates some noise in this
      case. So avoid that. Thanks to John Emmas for reporting.
      e01a20ce