summaryrefslogtreecommitdiff
path: root/x11-wm/xpra/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-12-24 14:11:38 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-12-24 14:11:38 +0000
commitde49812990871e1705b64051c35161d5e6400269 (patch)
tree5e1e8fcb0ff4579dbd22a1bfee28a6b97dc8aaeb /x11-wm/xpra/files
parent536c3711867ec947c1738f2c4b96f22e4863322d (diff)
gentoo resync : 24.12.2018
Diffstat (limited to 'x11-wm/xpra/files')
-rw-r--r--x11-wm/xpra/files/xpra-0.17.4-deprecated-avcodec.patch11
-rw-r--r--x11-wm/xpra/files/xpra-1.0.4-suid-warning.patch11
2 files changed, 0 insertions, 22 deletions
diff --git a/x11-wm/xpra/files/xpra-0.17.4-deprecated-avcodec.patch b/x11-wm/xpra/files/xpra-0.17.4-deprecated-avcodec.patch
deleted file mode 100644
index 13bd4be892d5..000000000000
--- a/x11-wm/xpra/files/xpra-0.17.4-deprecated-avcodec.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- xpra-0.17.4/setup.py
-+++ xpra-0.17.4/setup.py
-@@ -660,7 +660,7 @@
- "-Wno-unused-function",
- "-Wno-sometimes-uninitialized"]
- elif get_gcc_version()>=[4, 4]:
-- eifd = ["-Werror",
-+ eifd = ["-Werror", "-Wno-error=deprecated-declarations",
- #CentOS 6.x gives us some invalid warnings in nvenc, ignore those:
- #"-Wno-error=uninitialized",
- #needed on Debian and Ubuntu to avoid this error:
diff --git a/x11-wm/xpra/files/xpra-1.0.4-suid-warning.patch b/x11-wm/xpra/files/xpra-1.0.4-suid-warning.patch
deleted file mode 100644
index 9af267cb4505..000000000000
--- a/x11-wm/xpra/files/xpra-1.0.4-suid-warning.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- xpra-1.0.4/xpra/scripts/config.py
-+++ xpra-1.0.4/xpra/scripts/config.py
-@@ -130,7 +130,7 @@
- xorg_stat = os.stat(xorg_bin)
- if (xorg_stat.st_mode & stat.S_ISUID)!=0:
- if (xorg_stat.st_mode & stat.S_IROTH)==0:
-- warn("%s is suid and not readable, Xdummy support unavailable" % xorg_bin)
-+ debug("%s is suid and not readable, Xdummy support unavailable" % xorg_bin)
- return get_Xvfb_command()
- debug("%s is suid and readable, using the xpra_Xdummy wrapper" % xorg_bin)
- use_wrapper = True