Joan Torres
8996db4473
- A little cleanup of specfile - Update to tigervnc 1.13.0 * The servers and native viewer now support RealVNC's RSA-AES authentication methods and encryption * The native viewer is now translated to Romanian and Georgian * The native viewer now (optionally) supports PiKVM's H.264 encoding * The display settings for the native viewer have been overhauled to make them easier to understand * The native viewer now supports adding exceptions for expired certificates * Resolved an issue where full-screen mode didn't work in the native viewer on macOS 13 * Lock key synchronization has been re-enabled in the native viewer after being accidentally disabled in 1.11.0 * Xvnc/libvnc.so can now be built with Xorg 1.21 * x0vncserver is a bit better at handling differing server and client keyboard layout * x0vncserver now correctly handles zaphod mode - Removed patches (no longer needed): * tigervnc-newfbsize.patch (https://github.com/TigerVNC/tigervnc/pull/13) * n_utilize-system-crypto-policies.patch (https://github.com/TigerVNC/tigervnc/pull/1262) * xserver211.patch & u_tigervnc-211.patch (https://github.com/TigerVNC/tigervnc/pull/1383) - Refreshed patches: * n_tigervnc-date-time.patch * n_vncserver.patch * u_change-button-layout-in-ServerDialog.patch OBS-URL: https://build.opensuse.org/request/show/1066027 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/tigervnc?expand=0&rev=241
72 lines
2.9 KiB
Diff
72 lines
2.9 KiB
Diff
Index: tigervnc-1.13.0/unix/xserver/hw/vnc/buildtime.c
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/unix/xserver/hw/vnc/buildtime.c
|
|
+++ tigervnc-1.13.0/unix/xserver/hw/vnc/buildtime.c
|
|
@@ -15,4 +15,4 @@
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
* USA.
|
|
*/
|
|
-char buildtime[] = __DATE__ " " __TIME__;
|
|
+char buildtime[] = "??? ?? ???? ??:??:??";
|
|
Index: tigervnc-1.13.0/unix/vncconfig/buildtime.c
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/unix/vncconfig/buildtime.c
|
|
+++ tigervnc-1.13.0/unix/vncconfig/buildtime.c
|
|
@@ -15,4 +15,4 @@
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
* USA.
|
|
*/
|
|
-char buildtime[] = __DATE__ " " __TIME__;
|
|
+char buildtime[] = "??? ?? ???? ??:??:??";
|
|
Index: tigervnc-1.13.0/unix/x0vncserver/buildtime.c
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/unix/x0vncserver/buildtime.c
|
|
+++ tigervnc-1.13.0/unix/x0vncserver/buildtime.c
|
|
@@ -15,4 +15,4 @@
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
* USA.
|
|
*/
|
|
-char buildtime[] = __DATE__ " " __TIME__;
|
|
+char buildtime[] = "??? ?? ???? ??:??:??";
|
|
Index: tigervnc-1.13.0/win/winvnc/buildTime.cxx
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/win/winvnc/buildTime.cxx
|
|
+++ tigervnc-1.13.0/win/winvnc/buildTime.cxx
|
|
@@ -15,4 +15,4 @@
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
* USA.
|
|
*/
|
|
-const char* buildTime = "Built on " __DATE__ " at " __TIME__;
|
|
+const char* buildTime = "Built on ??? ?? ???? at ??:??:??";
|
|
Index: tigervnc-1.13.0/CMakeLists.txt
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/CMakeLists.txt
|
|
+++ tigervnc-1.13.0/CMakeLists.txt
|
|
@@ -40,10 +40,6 @@ if(MSVC)
|
|
message(FATAL_ERROR "TigerVNC cannot be built with Visual Studio. Please use MinGW")
|
|
endif()
|
|
|
|
-if(NOT BUILD_TIMESTAMP)
|
|
- STRING(TIMESTAMP BUILD_TIMESTAMP "%Y-%m-%d %H:%M" UTC)
|
|
-endif()
|
|
-
|
|
# Default to optimised builds instead of debug ones. Our code has no bugs ;)
|
|
# (CMake makes it fairly easy to toggle this back to Debug if needed)
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
Index: tigervnc-1.13.0/vncviewer/vncviewer.cxx
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/vncviewer/vncviewer.cxx
|
|
+++ tigervnc-1.13.0/vncviewer/vncviewer.cxx
|
|
@@ -105,10 +105,9 @@ static const char *about_text()
|
|
// time.
|
|
snprintf(buffer, sizeof(buffer),
|
|
_("TigerVNC Viewer v%s\n"
|
|
- "Built on: %s\n"
|
|
"Copyright (C) 1999-%d TigerVNC Team and many others (see README.rst)\n"
|
|
"See https://www.tigervnc.org for information on TigerVNC."),
|
|
- PACKAGE_VERSION, BUILD_TIMESTAMP, 2022);
|
|
+ PACKAGE_VERSION, 2022);
|
|
|
|
return buffer;
|
|
}
|