~ubuntu-branches/ubuntu/vivid/glib2.0/vivid-proposed

« back to all changes in this revision

Viewing changes to glib/glibconfig.h.win32.in

  • Committer: Package Import Robot
  • Author(s): Iain Lane, Laurent Bigonville, Iain Lane
  • Date: 2015-01-20 13:46:28 UTC
  • mfrom: (207.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20150120134628-b6muiofhl885twuy
Tags: 2.43.3-1
[ Laurent Bigonville ]
* debian/control.in, debian/libglib2.0-dev.install.in,
  debian/libglib2.0-0-dbg.install.in: Install the gdb python scripts in the
  proper locations, move them to the -dbg package and add the needed
  Breaks/Replaces (Closes: #774024)

[ Iain Lane ]
* New upstream release 2.43.3
  + add g_set_object() convenience function
  + GNetworkMonitor: check if NM is not running and don't crash
  + fix some races with g_mkdir_with_parents
  + avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save on
    static strings
  + fix some content type vs. mime issues
* 07_disable_tests_on_slow_archs.patch: Refresh

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
typedef signed long long gssize;
78
78
typedef unsigned long long gsize;
79
79
#define G_GSIZE_MODIFIER "I64"
 
80
#define G_GSSIZE_MODIFIER "I64"
 
81
#define G_GSIZE_FORMAT "I64u"
80
82
#define G_GSSIZE_FORMAT "I64d"
81
 
#define G_GSIZE_FORMAT "I64u"
82
83
 
83
84
#define G_MAXSIZE       G_MAXUINT64
84
85
#define G_MINSSIZE      G_MININT64
93
94
typedef signed int gssize;
94
95
typedef unsigned int gsize;
95
96
#define G_GSIZE_MODIFIER ""
 
97
#define G_GSSIZE_MODIFIER ""
 
98
#define G_GSIZE_FORMAT "u"
96
99
#define G_GSSIZE_FORMAT "i"
97
 
#define G_GSIZE_FORMAT "u"
98
100
 
99
101
#define G_MAXSIZE       G_MAXUINT
100
102
#define G_MINSSIZE      G_MININT
148
150
 
149
151
#endif
150
152
 
 
153
#ifndef G_DISABLE_DEPRECATED
151
154
#define g_ATEXIT(proc)  (atexit (proc))
152
155
 
153
156
#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
 
157
#endif
154
158
 
155
159
#define GLIB_MAJOR_VERSION @GLIB_MAJOR_VERSION@
156
160
#define GLIB_MINOR_VERSION @GLIB_MINOR_VERSION@