Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xorg-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
obextra
xorg-server
Commits
57b60d04
Commit
57b60d04
authored
6 years ago
by
Eric Vidal
Browse files
Options
Downloads
Patches
Plain Diff
upgrel : 1.19.6+13+gd0d1a694f-3
parent
55d66808
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
PKGBUILD
+9
-5
9 additions, 5 deletions
PKGBUILD
xext-shm-downgrade-from-error-to-debug.patch
+26
-0
26 additions, 0 deletions
xext-shm-downgrade-from-error-to-debug.patch
with
35 additions
and
5 deletions
PKGBUILD
+
9
−
5
View file @
57b60d04
...
...
@@ -7,7 +7,7 @@ pkgbase=xorg-server
pkgname
=(
'xorg-server'
'xorg-server-xephyr'
'xorg-server-xdmx'
'xorg-server-xvfb'
'xorg-server-xnest'
'xorg-server-xwayland'
'xorg-server-common'
'xorg-server-devel'
)
pkgver
=
1.19.6+13+gd0d1a694f
pkgrel
=
2
pkgrel
=
3
arch
=(
'x86_64'
)
license
=(
'custom'
)
groups
=(
'xorg'
)
...
...
@@ -25,13 +25,15 @@ source=("git+https://anongit.freedesktop.org/git/xorg/xserver.git#commit=$_commi
xvfb-run
xvfb-run.1
nvidia-add-modulepath-support.patch
xserver-autobind-hotplug.patch
)
xserver-autobind-hotplug.patch
xext-shm-downgrade-from-error-to-debug.patch
)
sha256sums
=(
'SKIP'
'ff0156309470fc1d378fd2e104338020a884295e285972cc88e250e031cc35b9'
'2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776'
'23f2fd69a53ef70c267becf7d2a9e7e07b739f8ec5bec10adb219bc6465099c7'
'67aaf8668c5fb3c94b2569df28e64bfa1dc97ce429cbbc067c309113caff6369'
)
'67aaf8668c5fb3c94b2569df28e64bfa1dc97ce429cbbc067c309113caff6369'
'b894948e9eba733ae586d59b647a8b40551875dddeea91610546930fdda22063'
)
validpgpkeys
=(
'6DD4217456569BA711566AC7F06E8FDE7B45DAAC'
)
# Eric Vidal
pkgver
()
{
...
...
@@ -47,7 +49,9 @@ prepare() {
# patch from Fedora, not yet merged
patch
-Np1
-i
../xserver-autobind-hotplug.patch
# merged upstream in trunk (FS#58187)
patch
-Np1
-i
../xext-shm-downgrade-from-error-to-debug.patch
autoreconf
-vfi
}
...
...
@@ -172,7 +176,7 @@ package_xorg-server-xephyr() {
package_xorg-server-xvfb
()
{
pkgdesc
=
"Virtual framebuffer X server"
depends
=(
'libxfont2'
'libunwind'
'pixman'
'xorg-server-common'
'xorg-xauth'
'libgl'
)
depends
=(
'libxfont2'
'libunwind'
'pixman'
'xorg-server-common'
'xorg-xauth'
'libgl'
'which'
)
cd
xserver/hw/vfb
#cd "${pkgbase}-${pkgver}/hw/vfb"
...
...
This diff is collapsed.
Click to expand it.
xext-shm-downgrade-from-error-to-debug.patch
0 → 100644
+
26
−
0
View file @
57b60d04
From d36128a72acac4d54813c52c93efefad2dc9af41 Mon Sep 17 00:00:00 2001
From: Alexander Volkov <a.volkov@rusbitech.ru>
Date: Mon, 12 Mar 2018 15:12:10 +0300
Subject: Xext/shm: Downgrade from error to debug log output about success
Signed-off-by: Alexander Volkov <a.volkov@rusbitech.ru>
Reviewed-by: Adam Jackson <ajax@redhat.com>
---
Xext/shm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Xext/shm.c b/Xext/shm.c
index 15e1b67..fc8441c 100644
--- a/Xext/shm.c
+++ b/Xext/shm.c
@@ -1199,7 +1199,7 @@
shm_tmpfile(void)
#ifdef O_TMPFILE
fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666);
if (fd >= 0) {
- ErrorF ("Using O_TMPFILE\n");
+ DebugF ("Using O_TMPFILE\n");
return fd;
}
ErrorF ("Not using O_TMPFILE\n");
--
cgit v1.1
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment