]> git.pld-linux.org Git - packages/tigervnc.git/blob - xserver-1.21.patch
- up to 1.11.0
[packages/tigervnc.git] / xserver-1.21.patch
1 --- tigervnc-1.11.0/unix/xserver/hw/vnc/xorg-version.h~ 2020-09-08 14:16:08.000000000 +0200
2 +++ tigervnc-1.11.0/unix/xserver/hw/vnc/xorg-version.h  2021-11-03 16:04:19.496096213 +0100
3 @@ -36,8 +36,10 @@
4  #define XORG 119
5  #elif XORG_VERSION_CURRENT < ((1 * 10000000) + (20 * 100000) + (99 * 1000))
6  #define XORG 120
7 +#elif XORG_VERSION_CURRENT < ((1 * 10000000) + (21 * 100000) + (99 * 1000))
8 +#define XORG 120
9  #else
10 -#error "X.Org newer than 1.20 is not supported"
11 +#error "X.Org newer than 1.21 is not supported"
12  #endif
13  
14  #endif
15 --- tigervnc-1.11.0/unix/xserver/hw/vnc/xvnc.c.orig     2021-11-03 16:05:33.000000000 +0100
16 +++ tigervnc-1.11.0/unix/xserver/hw/vnc/xvnc.c  2021-11-06 10:46:56.759091419 +0100
17 @@ -80,7 +80,14 @@
18  #undef VENDOR_RELEASE
19  #undef VENDOR_STRING
20  #include "version-config.h"
21 -#include "site.h"
22 +
23 +/* Default logging parameters. */
24 +#ifndef DEFAULT_LOG_VERBOSITY
25 +#define DEFAULT_LOG_VERBOSITY          0
26 +#endif
27 +#ifndef DEFAULT_LOG_FILE_VERBOSITY
28 +#define DEFAULT_LOG_FILE_VERBOSITY     3
29 +#endif
30  
31  #define XVNCVERSION "TigerVNC 1.11.0"
32  #define XVNCCOPYRIGHT ("Copyright (C) 1999-2020 TigerVNC Team and many others (see README.rst)\n" \
33 @@ -155,8 +162,7 @@
34  vncPrintBanner(void)
35  {
36      ErrorF("\nXvnc %s - built %s\n%s", XVNCVERSION, buildtime, XVNCCOPYRIGHT);
37 -    ErrorF("Underlying X server release %d, %s\n\n", VENDOR_RELEASE,
38 -           VENDOR_STRING);
39 +    ErrorF("Underlying X server release %d\n\n", VENDOR_RELEASE);
40  }
41  
42  static void
This page took 0.025565 seconds and 3 git commands to generate.