pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/SDL The "+" constraint modifier was yoo much. Wh...
details: https://anonhg.NetBSD.org/pkgsrc/rev/37e9160d3157
branches: trunk
changeset: 486998:37e9160d3157
user: drochner <drochner%pkgsrc.org@localhost>
date: Thu Jan 06 16:32:01 2005 +0000
description:
The "+" constraint modifier was yoo much. While it seems correct to me, it
caused gcc complaints in some cases. Pointed out by Nicolas Joly.
PR pkg/28882 should be fixed now.
diffstat:
devel/SDL/distinfo | 4 ++--
devel/SDL/patches/patch-bf | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (33 lines):
diff -r 367193822048 -r 37e9160d3157 devel/SDL/distinfo
--- a/devel/SDL/distinfo Thu Jan 06 16:27:06 2005 +0000
+++ b/devel/SDL/distinfo Thu Jan 06 16:32:01 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.35 2005/01/06 12:25:23 drochner Exp $
+$NetBSD: distinfo,v 1.36 2005/01/06 16:32:01 drochner Exp $
SHA1 (SDL-1.2.8.tar.gz) = 26f2104a60a28914b809d3cb77d5790bfdfd024c
Size (SDL-1.2.8.tar.gz) = 2602449 bytes
@@ -15,4 +15,4 @@
SHA1 (patch-bc) = 8f34e6d914f9edda1ea494e3970d11b238e47bb8
SHA1 (patch-bd) = 3d8b20cfe774280d1c8e96405ae26bc23444ee8d
SHA1 (patch-be) = 5f4ba09788f3ca5410067c14b90426f2a831e92b
-SHA1 (patch-bf) = 216d245edcb301b463769933a9fb375282678ae6
+SHA1 (patch-bf) = 0df8784f0e03ae3b1e63a06c2fc8255d3fdaf39f
diff -r 367193822048 -r 37e9160d3157 devel/SDL/patches/patch-bf
--- a/devel/SDL/patches/patch-bf Thu Jan 06 16:27:06 2005 +0000
+++ b/devel/SDL/patches/patch-bf Thu Jan 06 16:32:01 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-bf,v 1.1 2005/01/06 12:25:23 drochner Exp $
+$NetBSD: patch-bf,v 1.2 2005/01/06 16:32:01 drochner Exp $
--- include/SDL_endian.h.orig 2005-01-06 13:10:43.000000000 +0100
+++ include/SDL_endian.h
@@ -7,7 +7,7 @@
static __inline__ Uint16 SDL_Swap16(Uint16 x)
{
- __asm__("xchgb %b0,%h0" : "=q" (x) : "0" (x));
-+ __asm__("xchgb %b0,%h0" : "+Q" (x) : "0" (x));
++ __asm__("xchgb %b0,%h0" : "=Q" (x) : "0" (x));
return x;
}
#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
Home |
Main Index |
Thread Index |
Old Index