diff options
author | tron <tron@pkgsrc.org> | 2006-02-23 15:39:48 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-02-23 15:39:48 +0000 |
commit | 990ad28ef5ab82dd182010a7bc5b5a7d15926529 (patch) | |
tree | a130fd7e49c639ceb531cd1d4abf2baf37105da9 /x11 | |
parent | 2551dbfa524207b191df94b452c13e00b893570a (diff) | |
download | pkgsrc-990ad28ef5ab82dd182010a7bc5b5a7d15926529.tar.gz |
Use C code instead of dubious inline assembler to fix build problem under
NetBSD 3.99.15 which resulted in an incomplete package installation.
Problem pointed out by Thomas Klausner in private e-mail.
Bump package revision because of this fix.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xservers/Makefile | 4 | ||||
-rw-r--r-- | x11/xservers/distinfo | 3 | ||||
-rw-r--r-- | x11/xservers/patches/patch-ag | 22 |
3 files changed, 26 insertions, 3 deletions
diff --git a/x11/xservers/Makefile b/x11/xservers/Makefile index 35e68371ea9..d62ec5aa893 100644 --- a/x11/xservers/Makefile +++ b/x11/xservers/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.29 2006/02/08 15:20:49 joerg Exp $ +# $NetBSD: Makefile,v 1.30 2006/02/23 15:39:48 tron Exp $ DISTNAME= xservers-3.3.6.5 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_LOCAL} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/xservers/distinfo b/x11/xservers/distinfo index f84e24408eb..8ca7641eeb4 100644 --- a/x11/xservers/distinfo +++ b/x11/xservers/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2006/01/06 17:20:21 tron Exp $ +$NetBSD: distinfo,v 1.6 2006/02/23 15:39:48 tron Exp $ SHA1 (xservers-3.3.6.5.tar.bz2) = cac39534a4c5f8969d93ebfcf1352fc695148b69 RMD160 (xservers-3.3.6.5.tar.bz2) = eb3cc52911ce7ce96cba1a24734086cbf92887d9 @@ -9,3 +9,4 @@ SHA1 (patch-ac) = 35f3f5f7e431a0ca2e1ff97ba5ffc22a65681d4d SHA1 (patch-ad) = d2625138dba810be59a99e1ba8d28460f7edb789 SHA1 (patch-ae) = 300e9c1afb7a77625f282e94611fa1494fe76b97 SHA1 (patch-af) = ab5054d9374ca67ebbc5ffc1dedb29554040b225 +SHA1 (patch-ag) = a0add213c778b362612ba59cbf2ad45d6780cb93 diff --git a/x11/xservers/patches/patch-ag b/x11/xservers/patches/patch-ag new file mode 100644 index 00000000000..ba1620823c3 --- /dev/null +++ b/x11/xservers/patches/patch-ag @@ -0,0 +1,22 @@ +$NetBSD: patch-ag,v 1.1 2006/02/23 15:39:48 tron Exp $ + +--- programs/Xserver/hw/xfree86/vga256/drivers/cirrus/cir_inline.h.orig 2006-02-23 14:45:57.000000000 +0000 ++++ programs/Xserver/hw/xfree86/vga256/drivers/cirrus/cir_inline.h 2006-02-23 14:55:22.000000000 +0000 +@@ -28,6 +28,7 @@ + : "cx", "di"); + } + ++#ifdef BROKEN_INLINE_ASSEMBLER + static __inline__ void __memset( void * s, char c, int count ) { + __asm__ __volatile__( + "cld\n\t" +@@ -58,6 +59,9 @@ + : "=a" (c), "=D" (s), "=d" (count) :"0" (c),"1" (s),"2" (count) + :"cx"); + } ++#else ++#define __memset(s, c, count) (void)memset((s), (c), (count)) ++#endif + + static __inline__ void __memcpy( void *to, void *from, int n ) { + __asm__ __volatile__("cld\n\t" |