diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | glib/gtypes.h | 2 |
7 files changed, 31 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org> + + * glib/gtypes.h: check for __pentium4__ when deciding whether to + use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620. + 2004-05-01 Hans Breuer <hans@breuer.org> * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 3bc3c983a..877a9bb55 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org> + + * glib/gtypes.h: check for __pentium4__ when deciding whether to + use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620. + 2004-05-01 Hans Breuer <hans@breuer.org> * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 3bc3c983a..877a9bb55 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org> + + * glib/gtypes.h: check for __pentium4__ when deciding whether to + use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620. + 2004-05-01 Hans Breuer <hans@breuer.org> * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 3bc3c983a..877a9bb55 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org> + + * glib/gtypes.h: check for __pentium4__ when deciding whether to + use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620. + 2004-05-01 Hans Breuer <hans@breuer.org> * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 3bc3c983a..877a9bb55 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org> + + * glib/gtypes.h: check for __pentium4__ when deciding whether to + use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620. + 2004-05-01 Hans Breuer <hans@breuer.org> * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 3bc3c983a..877a9bb55 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org> + + * glib/gtypes.h: check for __pentium4__ when deciding whether to + use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620. + 2004-05-01 Hans Breuer <hans@breuer.org> * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST diff --git a/glib/gtypes.h b/glib/gtypes.h index a7ec35876..aca841fea 100644 --- a/glib/gtypes.h +++ b/glib/gtypes.h @@ -156,7 +156,7 @@ typedef void (*GFreeFunc) (gpointer data); __v; })) # if !defined (__i486__) && !defined (__i586__) \ && !defined (__pentium__) && !defined (__i686__) \ - && !defined (__pentiumpro__) + && !defined (__pentiumpro__) && !defined (__pentium4__) # define GUINT32_SWAP_LE_BE_IA32(val) \ (__extension__ \ ({ register guint32 __v, __x = ((guint32) (val)); \ |