rebuilt by autoport with build requirements: xorg-server-devel>=21.1.3-1mamba [release 0.1.5-3mamba;Sat Feb 19 2022]
This commit is contained in:
parent
66867173fa
commit
1b82182253
101
xf86-video-qxl-0.1.5-xorg-server-21.1.3.patch
Normal file
101
xf86-video-qxl-0.1.5-xorg-server-21.1.3.patch
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
From 4e1963a812f2c1777ba5d56ea9e939a3e40a0496 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Zolt=C3=A1n=20B=C3=B6sz=C3=B6rm=C3=A9nyi?=
|
||||||
|
<zboszor@gmail.com>
|
||||||
|
Date: Sat, 28 Aug 2021 15:38:40 +0200
|
||||||
|
Subject: [PATCH] Fix a build error with Xorg master
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Use xf86ReturnOptValBool() in get_bool_option() instead of
|
||||||
|
options[option_index].value.bool to fix a compiler error with
|
||||||
|
current Xorg xserver master branch.
|
||||||
|
|
||||||
|
Also use xf86GetOptValInteger() in get_int_option() and
|
||||||
|
xf86GetOptValString() in get_str_option() for consistency.
|
||||||
|
|
||||||
|
The change causes a slight performance drop during option parsing
|
||||||
|
because the passed-in index_value is no longer used as an index
|
||||||
|
into the options array.
|
||||||
|
|
||||||
|
Instead, it's used as a token now for the standard option getter
|
||||||
|
functions which works since the index_value to the get_*_option()
|
||||||
|
functions are identical to the value of options[n].token in the
|
||||||
|
passed-in OptionInfoRec array.
|
||||||
|
|
||||||
|
Also rename "int option_index" to "int token" for clarity in all
|
||||||
|
three functions.
|
||||||
|
|
||||||
|
Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
|
||||||
|
---
|
||||||
|
src/qxl_option_helpers.c | 13 +++++++------
|
||||||
|
src/qxl_option_helpers.h | 6 +++---
|
||||||
|
2 files changed, 10 insertions(+), 9 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/qxl_option_helpers.c b/src/qxl_option_helpers.c
|
||||||
|
index 2aba677..7707b7c 100644
|
||||||
|
--- a/src/qxl_option_helpers.c
|
||||||
|
+++ b/src/qxl_option_helpers.c
|
||||||
|
@@ -10,31 +10,32 @@
|
||||||
|
|
||||||
|
#include "qxl_option_helpers.h"
|
||||||
|
|
||||||
|
-int get_int_option(OptionInfoPtr options, int option_index,
|
||||||
|
+int get_int_option(OptionInfoPtr options, int token,
|
||||||
|
const char *env_name)
|
||||||
|
{
|
||||||
|
+ int value;
|
||||||
|
if (env_name && getenv(env_name)) {
|
||||||
|
return atoi(getenv(env_name));
|
||||||
|
}
|
||||||
|
- return options[option_index].value.num;
|
||||||
|
+ return xf86GetOptValInteger(options, token, &value) ? value : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
-const char *get_str_option(OptionInfoPtr options, int option_index,
|
||||||
|
+const char *get_str_option(OptionInfoPtr options, int token,
|
||||||
|
const char *env_name)
|
||||||
|
{
|
||||||
|
if (getenv(env_name)) {
|
||||||
|
return getenv(env_name);
|
||||||
|
}
|
||||||
|
- return options[option_index].value.str;
|
||||||
|
+ return xf86GetOptValString(options, token);
|
||||||
|
}
|
||||||
|
|
||||||
|
-int get_bool_option(OptionInfoPtr options, int option_index,
|
||||||
|
+int get_bool_option(OptionInfoPtr options, int token,
|
||||||
|
const char *env_name)
|
||||||
|
{
|
||||||
|
const char* value = getenv(env_name);
|
||||||
|
|
||||||
|
if (!value) {
|
||||||
|
- return options[option_index].value.bool;
|
||||||
|
+ return xf86ReturnOptValBool(options, token, FALSE);
|
||||||
|
}
|
||||||
|
if (strcmp(value, "0") == 0 ||
|
||||||
|
strcasecmp(value, "off") == 0 ||
|
||||||
|
diff --git a/src/qxl_option_helpers.h b/src/qxl_option_helpers.h
|
||||||
|
index 7c54c72..66d0a17 100644
|
||||||
|
--- a/src/qxl_option_helpers.h
|
||||||
|
+++ b/src/qxl_option_helpers.h
|
||||||
|
@@ -4,13 +4,13 @@
|
||||||
|
#include <xf86Crtc.h>
|
||||||
|
#include <xf86Opt.h>
|
||||||
|
|
||||||
|
-int get_int_option(OptionInfoPtr options, int option_index,
|
||||||
|
+int get_int_option(OptionInfoPtr options, int token,
|
||||||
|
const char *env_name);
|
||||||
|
|
||||||
|
-const char *get_str_option(OptionInfoPtr options, int option_index,
|
||||||
|
+const char *get_str_option(OptionInfoPtr options, int token,
|
||||||
|
const char *env_name);
|
||||||
|
|
||||||
|
-int get_bool_option(OptionInfoPtr options, int option_index,
|
||||||
|
+int get_bool_option(OptionInfoPtr options, int token,
|
||||||
|
const char *env_name);
|
||||||
|
|
||||||
|
#endif // OPTION_HELPERS_H
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
@ -1,25 +1,25 @@
|
|||||||
%define xorg_ver %(pkg-config xorg-server --modversion|cut -d. -f 1-2)
|
%define xorg_ver %(pkg-config xorg-server --modversion|cut -d. -f 1-2)
|
||||||
Name: xf86-video-qxl
|
Name: xf86-video-qxl
|
||||||
Version: 0.1.5
|
Version: 0.1.5
|
||||||
Release: 2mamba
|
Release: 3mamba
|
||||||
Summary: QXL video driver for X.org
|
Summary: QXL video driver for X.org
|
||||||
Group: System/X11
|
Group: System/X11
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://x.org
|
URL: https://www.x.org/wiki/
|
||||||
Source: https://www.x.org/releases/individual/driver/xf86-video-qxl-%{version}.tar.bz2
|
Source: https://www.x.org/releases/individual/driver/xf86-video-qxl-%{version}.tar.bz2
|
||||||
|
Patch0: xf86-video-qxl-0.1.5-xorg-server-21.1.3.patch
|
||||||
License: MIT
|
License: MIT
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRequires: xorg-server-devel >= 1.20.4
|
BuildRequires: xorg-server-devel >= 21.1.3-1mamba
|
||||||
BuildRequires: xorg-proto-devel
|
BuildRequires: xorg-proto-devel
|
||||||
Provides: xorgdrvvideo
|
Provides: xorgdrvvideo
|
||||||
Requires: xorg-server >= %{xorg_ver}
|
Requires: xorg-server >= %{xorg_ver}
|
||||||
Requires: xorg-server <= %{xorg_ver}.255
|
Requires: xorg-server <= %{xorg_ver}.255
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
QXL video driver for X.org.
|
QXL video driver for X.org.
|
||||||
@ -28,6 +28,7 @@ QXL video driver for X.org.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1 -b .xorg-server-21.1.3
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
@ -47,6 +48,9 @@ QXL video driver for X.org.
|
|||||||
%doc COPYING
|
%doc COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Feb 19 2022 Automatic Build System <autodist@mambasoft.it> 0.1.5-3mamba
|
||||||
|
- rebuilt by autoport with build requirements: xorg-server-devel>=21.1.3-1mamba
|
||||||
|
|
||||||
* Sun Mar 03 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.5-2mamba
|
* Sun Mar 03 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.5-2mamba
|
||||||
- rebuilt with xorg-server 1.20.4
|
- rebuilt with xorg-server 1.20.4
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user