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 >
aboutsummaryrefslogtreecommitdiff
path: root/nix/boost
AgeCommit message (Expand)Author
2020-06-24nix: Tweak .gitignore files....Remove .gitignore entries where they match source files that are tracked in Git. This is relevant to me at least, as some code searching tools use .gitignore files and will ignore matched files. Christopher Baines
2019-11-26daemon: boost::format: Fix typo "referred"....* nix/boost/format/exceptions.hpp (too_few_args): Fix typo. (too_many_args): Fix typo. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vagrant Cascadian