]> TLD Linux GIT Repositories - packages/tigervnc.git/commitdiff
- obsolete
authorMarcin Krol <hawk@tld-linux.org>
Tue, 28 Jul 2015 08:39:12 +0000 (08:39 +0000)
committerMarcin Krol <hawk@tld-linux.org>
Tue, 28 Jul 2015 08:39:12 +0000 (08:39 +0000)
format-security.patch [deleted file]
no-bashizm.patch [deleted file]
tigervnc-xserver-1.17.patch [deleted file]

diff --git a/format-security.patch b/format-security.patch
deleted file mode 100644 (file)
index cbd58ca..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- tigervnc-1.3.0/vncviewer/vncviewer.cxx.orig        2013-07-01 12:42:05.000000000 +0000
-+++ tigervnc-1.3.0/vncviewer/vncviewer.cxx     2013-07-18 13:01:58.387116062 +0000
-@@ -304,7 +304,7 @@
-   snprintf(vncServerName, VNCSERVERNAMELEN, "localhost::%d", localPort);
-   vncServerName[VNCSERVERNAMELEN - 1] = '\0';
--  vlog.error(vncServerName);
-+  vlog.error("%s", vncServerName);
-   return 0;
- }
diff --git a/no-bashizm.patch b/no-bashizm.patch
deleted file mode 100644 (file)
index 752c0a1..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- tigervnc-1.2.0/unix/xserver/hw/vnc/Makefile.am~    2012-03-23 13:48:14.821937463 +0100
-+++ tigervnc-1.2.0/unix/xserver/hw/vnc/Makefile.am     2012-03-23 13:53:47.718619148 +0100
-@@ -68,7 +68,7 @@
- pixman.h:
-       for i in ${XSERVERLIBS_CFLAGS}; do \
--              if [[ "$$i" =~ "pixman" ]]; then \
-+              if [[ "$$i" = *pixman* ]]; then \
-                       PIXMANINCDIR=`echo $$i | sed s/-I//g`; \
-               fi; \
-       done; \
diff --git a/tigervnc-xserver-1.17.patch b/tigervnc-xserver-1.17.patch
deleted file mode 100644 (file)
index c5dd67b..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-diff -up tigervnc-1.4.2/unix/xserver/hw/vnc/xorg-version.h.xserver117 tigervnc-1.4.2/unix/xserver/hw/vnc/xorg-version.h
---- tigervnc-1.4.2/unix/xserver/hw/vnc/xorg-version.h.xserver117       2015-01-23 23:37:23.000000000 +0000
-+++ tigervnc-1.4.2/unix/xserver/hw/vnc/xorg-version.h  2015-02-13 17:35:29.847294663 +0000
-@@ -48,8 +48,10 @@
- #define XORG 115
- #elif XORG_VERSION_CURRENT < ((1 * 10000000) + (16 * 100000) + (99 * 1000))
- #define XORG 116
-+#elif XORG_VERSION_CURRENT < ((1 * 10000000) + (17 * 100000) + (99 * 1000))
-+#define XORG 117
- #else
--#error "X.Org newer than 1.16 is not supported"
-+#error "X.Org newer than 1.17 is not supported"
- #endif
- #endif
-diff -up tigervnc-1.4.2/unix/xserver/hw/vnc/xvnc.cc.xserver117 tigervnc-1.4.2/unix/xserver/hw/vnc/xvnc.cc
---- tigervnc-1.4.2/unix/xserver/hw/vnc/xvnc.cc.xserver117      2015-01-23 23:37:23.000000000 +0000
-+++ tigervnc-1.4.2/unix/xserver/hw/vnc/xvnc.cc 2015-02-13 17:35:27.963265774 +0000
-@@ -717,9 +717,9 @@ vfbInstallColormap(ColormapPtr pmap)
-       entries = pmap->pVisual->ColormapEntries;
-       pVisual = pmap->pVisual;
--      ppix = (Pixel *)xalloc(entries * sizeof(Pixel));
--      prgb = (xrgb *)xalloc(entries * sizeof(xrgb));
--      defs = (xColorItem *)xalloc(entries * sizeof(xColorItem));
-+      ppix = (Pixel *)malloc(entries * sizeof(Pixel));
-+      prgb = (xrgb *)malloc(entries * sizeof(xrgb));
-+      defs = (xColorItem *)malloc(entries * sizeof(xColorItem));
-       for (i = 0; i < entries; i++)  ppix[i] = i;
-       /* XXX truecolor */
-@@ -738,9 +738,9 @@ vfbInstallColormap(ColormapPtr pmap)
-       }
-       (*pmap->pScreen->StoreColors)(pmap, entries, defs);
-       
--      xfree(ppix);
--      xfree(prgb);
--      xfree(defs);
-+      free(ppix);
-+      free(prgb);
-+      free(defs);
-     }
- }