x11-drivers/xf86-video-r128: Add missing include on stdint.h

Closes: https://bugs.gentoo.org/649496
Package-Manager: Portage-2.3.24, Repoman-2.3.6
This commit is contained in:
David Seifert
2018-03-10 20:14:04 +01:00
parent 0c7670535a
commit 2e4ddcb2d2
2 changed files with 23 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
--- a/src/atipcirename.h
+++ b/src/atipcirename.h
@@ -29,6 +29,8 @@
#ifndef ATIPCIRENAME_H
#define ATIPCIRENAME_H
+#include <stdint.h>
+
enum region_type {
REGION_MEM,
REGION_IO

View File

@@ -1,9 +1,10 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
XORG_DRI=dri
inherit xorg-2
inherit flag-o-matic xorg-2
DESCRIPTION="ATI Rage128 video driver"
@@ -13,8 +14,17 @@ IUSE="dri"
RDEPEND=">=x11-base/xorg-server-1.2"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}"/${P}-fix-stdint_h.patch )
pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable dri)
)
}
src_configure() {
# always use C11 semantics
append-cflags -std=gnu11
xorg-2_src_configure
}