From: Tobias Geerinckx-Rice Date: Mon, 20 May 2019 04:52:33 +0200 Subject: [PATCH] gnu: xf86-video-voodoo: Don't use PCITAG. Copied verbatim from upstream repository[0]. [0]: https://cgit.freedesktop.org/xorg/driver/-xf86-video-voodoo/patch/?id=9172ae566a0e85313fc80ab62b4455393eefe593 From 9172ae566a0e85313fc80ab62b4455393eefe593 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 22 Sep 2014 10:56:02 +1000 Subject: don't use PCITAG in struct anymore --- src/voodoo.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/voodoo.h b/src/voodoo.h index bfed497..c3eb64e 100644 --- a/src/voodoo.h +++ b/src/voodoo.h @@ -23,7 +23,9 @@ typedef struct { Bool Voodoo2; /* Set if Voodoo2 */ pciVideoPtr PciInfo; /* PCI data */ +#ifndef XSERVER_LIBPCIACCESS PCITAG PciTag; +#endif CARD32 PhysBase; CARD32 Width; /* Current width */ -- cgit v1.0 mized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-10-23etc: systemd services shouldn't ‘RemainAfterExit’....* etc/guix-daemon.service.in (RemainAfterExit): Don't. * etc/guix-publish.service.in (RemainAfterExit): Likewise don't. Tobias Geerinckx-Rice
2022-10-23etc: Add ‘Restart=always’ to both systemd services....* etc/guix-daemon.service.in (Restart): ‘Always’ do. * etc/guix-publish.service.in (Restart): Likewise. Tobias Geerinckx-Rice
2021-02-09etc: 'guix-publish.service' depends on 'guix-daemon.service'....Reported by Dimitri Delabroye <dimitri.delabroye@inria.fr>. * etc/guix-publish.service.in (Requires, PartOf, After): New fields. Ludovic Courtès