- update to r3789

- tigervnc-rh494801.patch merged
- tigervnc-newfbsize.patch is no longer needed
- fix problems when vncviewer and Xvnc run on different endianess (#496653)
- UltraVNC and TightVNC clients work fine again (#496786)
This commit is contained in:
Adam Tkac 2009-04-27 13:33:58 +00:00
parent ed283d4510
commit 6bd65dd425
5 changed files with 13 additions and 33 deletions

View File

@ -1 +1 @@
tigervnc-0.0.90-20090403svn3751.tar.bz2
tigervnc-0.0.90-20090427svn3789.tar.bz2

View File

@ -1 +1 @@
34f63ea8b071b0e1996ac467455ee4c2 tigervnc-0.0.90-20090403svn3751.tar.bz2
a34b291684a09148b8059450d2543d40 tigervnc-0.0.90-20090427svn3789.tar.bz2

View File

@ -1,12 +0,0 @@
diff -up tightvnc-1.5.0-20081015svn3022/unix/vncviewer/CConn.cxx.newfbsize tightvnc-1.5.0-20081015svn3022/unix/vncviewer/CConn.cxx
--- tightvnc-1.5.0-20081015svn3022/unix/vncviewer/CConn.cxx.newfbsize 2008-10-23 13:00:59.000000000 +0200
+++ tightvnc-1.5.0-20081015svn3022/unix/vncviewer/CConn.cxx 2008-10-23 13:01:11.000000000 +0200
@@ -327,6 +327,8 @@ void CConn::beginRect(const Rect& r, uns
if (encoding != encodingCopyRect) {
lastServerEncoding = encoding;
}
+ if (encoding == pseudoEncodingDesktopSize)
+ setDesktopSize( r.width(), r.height() );
}
void CConn::endRect(const Rect& r, unsigned int encoding)

View File

@ -1,11 +0,0 @@
diff -up tigervnc-0.0.90-20090407svn3761/unix/vncserver.rh494801 tigervnc-0.0.90-20090407svn3761/unix/vncserver
--- tigervnc-0.0.90-20090407svn3761/unix/vncserver.rh494801 2009-04-08 15:36:58.463812689 +0200
+++ tigervnc-0.0.90-20090407svn3761/unix/vncserver 2009-04-08 15:37:13.552448279 +0200
@@ -203,7 +203,6 @@ $cmd .= " -pixelformat $pixelformat" if
$cmd .= " -rfbwait 30000";
$cmd .= " -rfbauth $vncUserDir/passwd";
$cmd .= " -rfbport $vncPort";
-$cmd .= " -fp $fontPath" if ($fontPath);
$cmd .= " -pn";
# Add color database stuff here, e.g.:

View File

@ -1,10 +1,10 @@
%define revision 3751
%define date 20090403
%define revision 3789
%define date 20090427
%define releasetag %{date}svn%{revision}
Name: tigervnc
Version: 0.0.90
Release: 0.5.%{releasetag}%{?dist}
Release: 0.6.%{releasetag}%{?dist}
Summary: A TigerVNC remote display system
Group: User Interface/Desktops
@ -51,9 +51,7 @@ Patch0: tigervnc-102434.patch
Patch1: tigervnc-bounds.patch
Patch4: tigervnc-cookie.patch
Patch5: tigervnc-manminor.patch
Patch6: tigervnc-newfbsize.patch
Patch8: tigervnc-viewer-reparent.patch
Patch9: tigervnc-rh494801.patch
%description
Virtual Network Computing (VNC) is a remote display system which
@ -109,9 +107,7 @@ popd
%patch1 -p1 -b .bounds
%patch4 -p1 -b .cookie
%patch5 -p1 -b .manminor
%patch6 -p1 -b .newfbsize
%patch8 -p1 -b .viewer-reparent
%patch9 -p1 -b .rh494801
# Use newer gettext
sed -i 's/AM_GNU_GETTEXT_VERSION.*/AM_GNU_GETTEXT_VERSION([0.17])/' \
@ -135,7 +131,7 @@ autoreconf -fiv
--disable-xorg --disable-xnest --disable-xvfb --disable-dmx \
--disable-xwin --disable-xephyr --disable-kdrive --with-pic \
--disable-xorgcfg --disable-xprint --disable-static \
--disable-composite --disable-xtrap --enable-xcsecurity \
--disable-composite --disable-xtrap \
--disable-{a,c,m}fb \
--with-default-font-path="catalogue:%{_sysconfdir}/X11/fontpath.d,built-ins" \
--with-fontdir=%{_datadir}/X11/fonts \
@ -251,6 +247,13 @@ fi
%{_libdir}/xorg/modules/extensions/libvnc.so
%changelog
* Mon Apr 27 2009 Adam Tkac <atkac redhat com> 0.0.90-0.6.20090427svn3789
- update to r3789
- tigervnc-rh494801.patch merged
- tigervnc-newfbsize.patch is no longer needed
- fix problems when vncviewer and Xvnc run on different endianess (#496653)
- UltraVNC and TightVNC clients work fine again (#496786)
* Wed Apr 08 2009 Adam Tkac <atkac redhat com> 0.0.90-0.5.20090403svn3751
- workaround broken fontpath handling in vncserver script (#494801)