diff options
author | Joakim Tjernlund <joakim.tjernlund@infinera.com> | 2021-11-24 21:10:56 +0100 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@infinera.com> | 2021-11-24 21:10:56 +0100 |
commit | f2577107f7f55382c524d8c738a777e5cdd80f60 (patch) | |
tree | 78c99d06c1c7ac66a833d3100cbb7f07d2ef2508 /unix | |
parent | 736b50d04e1ba965696cd15d456dc2b7fc123150 (diff) | |
download | tigervnc-f2577107f7f55382c524d8c738a777e5cdd80f60.tar.gz tigervnc-f2577107f7f55382c524d8c738a777e5cdd80f60.zip |
xvnc: adapt for 1.21
VENDOR_STRING is gone as is DEFAULT_LOG_VERBOSITY
site.h has been removed and is not needed.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/xserver/hw/vnc/xvnc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/unix/xserver/hw/vnc/xvnc.c b/unix/xserver/hw/vnc/xvnc.c index a655239f..3bc77b2c 100644 --- a/unix/xserver/hw/vnc/xvnc.c +++ b/unix/xserver/hw/vnc/xvnc.c @@ -69,7 +69,6 @@ extern char buildtime[]; #undef VENDOR_RELEASE #undef VENDOR_STRING #include "version-config.h" -#include "site.h" #define XVNCVERSION "TigerVNC 1.12.80" #define XVNCCOPYRIGHT ("Copyright (C) 1999-2021 TigerVNC Team and many others (see README.rst)\n" \ @@ -111,14 +110,13 @@ static Bool Render = TRUE; static Bool displaySpecified = FALSE; static char displayNumStr[16]; -static int vncVerbose = DEFAULT_LOG_VERBOSITY; +static int vncVerbose = 0; static void vncPrintBanner(void) { ErrorF("\nXvnc %s - built %s\n%s", XVNCVERSION, buildtime, XVNCCOPYRIGHT); - ErrorF("Underlying X server release %d, %s\n\n", VENDOR_RELEASE, - VENDOR_STRING); + ErrorF("Underlying X server release %d\n\n", VENDOR_RELEASE); } static void |