mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 10:16:17 +01:00
wrap 64-bit MIN/MAX limit constants in G_GINT64_CONSTANT. Fixes bug
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org> * configure.in: wrap 64-bit MIN/MAX limit constants in G_GINT64_CONSTANT. Fixes bug #108699.
This commit is contained in:
parent
939c31884b
commit
a4fa910471
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: wrap 64-bit MIN/MAX limit constants in
|
||||||
|
G_GINT64_CONSTANT. Fixes bug #108699.
|
||||||
|
|
||||||
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
||||||
|
|
||||||
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: wrap 64-bit MIN/MAX limit constants in
|
||||||
|
G_GINT64_CONSTANT. Fixes bug #108699.
|
||||||
|
|
||||||
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
||||||
|
|
||||||
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: wrap 64-bit MIN/MAX limit constants in
|
||||||
|
G_GINT64_CONSTANT. Fixes bug #108699.
|
||||||
|
|
||||||
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
||||||
|
|
||||||
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: wrap 64-bit MIN/MAX limit constants in
|
||||||
|
G_GINT64_CONSTANT. Fixes bug #108699.
|
||||||
|
|
||||||
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
||||||
|
|
||||||
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: wrap 64-bit MIN/MAX limit constants in
|
||||||
|
G_GINT64_CONSTANT. Fixes bug #108699.
|
||||||
|
|
||||||
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
||||||
|
|
||||||
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: wrap 64-bit MIN/MAX limit constants in
|
||||||
|
G_GINT64_CONSTANT. Fixes bug #108699.
|
||||||
|
|
||||||
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
2003-05-19 Noah Levitt <nlevitt@columbia.edu>
|
||||||
|
|
||||||
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
* glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
|
||||||
|
@ -1946,9 +1946,9 @@ G_BEGIN_DECLS
|
|||||||
#define G_MAXLONG $glib_Ml
|
#define G_MAXLONG $glib_Ml
|
||||||
#define G_MAXULONG $glib_Mul
|
#define G_MAXULONG $glib_Mul
|
||||||
|
|
||||||
#define G_MININT64 ((gint64) 0x8000000000000000)
|
#define G_MININT64 G_GINT64_CONSTANT(0x8000000000000000)
|
||||||
#define G_MAXINT64 ((gint64) 0x7fffffffffffffff)
|
#define G_MAXINT64 G_GINT64_CONSTANT(0x7fffffffffffffff)
|
||||||
#define G_MAXUINT64 ((guint64) 0xffffffffffffffff)
|
#define G_MAXUINT64 G_GINT64_CONSTANT(0xffffffffffffffffU)
|
||||||
|
|
||||||
_______EOF
|
_______EOF
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user