Joan Torres
543e26d9be
* Default installation of native viewer can once again handle VncAuth * Graphic acceleration now can now be disabled through the vncserver config file the same way as other features * Command vncpasswd can again correctly update passwords * Native viewer once again consider passwd file that contain more than one password valid * Native viewer can once again connect to RealVNC servers * Users of x0vncserver should no longer experience the mouse cursor moving to the upper left corner * H264 encoding no longer causes crashing - Removed patches (no longer needed): * u_tigervnc-Change-button-layout-in-ServerDialog.patch - Refreshed patches: * n_tigervnc-Date-time.patch * n_tigervnc-Dont-sign-java-client.patch * n_tigervnc-reproducible-jar-mtime.patch * u_tigervnc-Add-autoaccept-parameter.patch * u_tigervnc-Build-libXvnc-as-separate-library.patch * u_tigervnc-Ignore-epipe-on-write.patch - Fix path on vncviewer desktop file. Use %use_update_alternative OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/tigervnc?expand=0&rev=268
89 lines
3.5 KiB
Diff
89 lines
3.5 KiB
Diff
Index: tigervnc-1.13.1/unix/xserver/hw/vnc/buildtime.c
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/unix/xserver/hw/vnc/buildtime.c
|
|
+++ tigervnc-1.13.1/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.1/unix/vncconfig/buildtime.c
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/unix/vncconfig/buildtime.c
|
|
+++ tigervnc-1.13.1/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.1/unix/x0vncserver/buildtime.c
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/unix/x0vncserver/buildtime.c
|
|
+++ tigervnc-1.13.1/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.1/win/winvnc/buildTime.cxx
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/win/winvnc/buildTime.cxx
|
|
+++ tigervnc-1.13.1/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.1/CMakeLists.txt
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/CMakeLists.txt
|
|
+++ tigervnc-1.13.1/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.1/vncviewer/vncviewer.cxx
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/vncviewer/vncviewer.cxx
|
|
+++ tigervnc-1.13.1/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, 2024);
|
|
+ PACKAGE_VERSION, 2024);
|
|
|
|
return buffer;
|
|
}
|
|
Index: tigervnc-1.13.1/java/CMakeLists.txt
|
|
===================================================================
|
|
--- tigervnc-1.13.1.orig/java/CMakeLists.txt
|
|
+++ tigervnc-1.13.1/java/CMakeLists.txt
|
|
@@ -25,12 +25,6 @@ set(JAVA_PKCS11_PROVIDER_ARG NOTFOUND CACHE STRING "Path to the PKCS11 security
|
|
set(JAVA_TSA_URL NOTFOUND CACHE STRING "URL of Time Stamping Authority (TSA)")
|
|
set(JAVA_CERT_CHAIN NOTFOUND CACHE STRING "Path to CA certificate chain file")
|
|
|
|
-if(NOT BUILD)
|
|
- STRING(TIMESTAMP BUILD "%Y%m%d" UTC)
|
|
-endif()
|
|
-STRING(TIMESTAMP JAVA_DATE "%Y-%m-%d" UTC)
|
|
-STRING(TIMESTAMP JAVA_TIME "%H:%M:%S" UTC)
|
|
-
|
|
set(JAVA_SOURCES "")
|
|
set(JAVA_CLASSES "")
|
|
|