• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

contrib/H03-May-2022-214180

COPYINGH A D30-Jul-199817.6 KiB340281

ChangeLogH A D17-Nov-20032.8 KiB7765

ImakefileH A D17-Feb-2003700 4030

Makefile.bottomH A D18-Nov-2001835 2619

Makefile.inH A D13-Nov-2003727 3726

Makefile.topH A D14-Jun-2006548 1916

READMEH A D20-May-20062.5 KiB7751

args.cH A D14-Jun-20068 KiB297235

configureH A D20-May-2006166.6 KiB5,7844,908

configure.inH A D20-May-20061.2 KiB5844

d3des.cH A D30-Jul-199815.1 KiB440349

d3des.hH A D30-Jul-19981.6 KiB516

install-shH A D18-Nov-20014.7 KiB242152

listen.cH A D30-Jul-19985.4 KiB228150

rfbproto.cH A D03-May-202222.4 KiB871615

rfbproto.hH A D30-Jul-199821.1 KiB672186

sockets.cH A D03-May-20227.7 KiB386272

vncauth.cH A D03-May-20223.7 KiB17694

vncauth.hH A D30-Jul-19981.1 KiB316

x.cH A D14-Jun-200634.2 KiB1,5281,145

x2vnc.cH A D14-Jun-20062.9 KiB14183

x2vnc.hH A D09-Dec-20053.9 KiB15499

x2vnc.manH A D21-May-20066.2 KiB272264

x2vnc.spec.inH A D14-Mar-2001724 3326

README

1
2                   x2vnc - A dual-screen hack
3          Written by Fredrik H�binette <hubbe@hubbe.net>
4         Based on ideas from x2x and code from vncviewer.
5
6          Thanks to Grant McDorman and Brad Fitzpatrick
7            for helping me make this program better.
8
9
10This program merges the capabilities of x2x and vncviewer.
11It will allow a machine with an X display and a machine with
12a VNC server running on it's main screen to act as if they
13were two displays connected to one machine. When you move
14your mouse pointer off the screen in a direction of your
15choosing, the pointer will appear on the other screen instead.
16
17There are now two ways to compile x2vnc:
18
19  1) run './configure', then 'make'
20  2) edit Imakefile, run 'xmkmf', then 'make'
21
22After compiling, you should su to root and type 'make install'.
23
24The first way is recommended since it will automatically detect
25what X11 extensions you have available on your system. For x2vnc
26to function properly it is highly recommended that you have the
27development packages for the following X11 extensions installed:
28
29     Xinerama   MIT-Screensaver  RANDR and XFree86-DGA
30
31Depending on what distribution you use, you will need to install
32different packages:
33
34Ubuntu/hoary:
35  apt-get install x-dev libxinerama-dev libxss-dev
36  apt-get install libxrandr-dev libxxf86dga-dev
37
38Debian/stable:
39  apt-get install x-dev xlibs-static-dev libxrandr-dev
40
41Debian/unstable:
42  apt-get install x11proto-core-dev
43  apt-get install x11proto-xf86dga-dev x11proto-scrnsaver-dev
44  apt-get install libxrandr-dev libxrandr-dev
45
46Fedora 5:
47  yum install xorg-x11-proto-devel
48
49Fedora 2-4:
50  yum install xorg-x11-devel
51
52
53
54The latest version of this program should be available from
55
56       http://Fredrik.Hubbe.net/x2vnc.html
57
58For more info about VNC: http://www.realvnc.com/
59For more info about x2x: http://ftp.digital.com/pub/Digital/SRC/x2x/
60
61
62This is free software; you can redistribute it and/or modify
63it under the terms of the GNU General Public License as published by
64the Free Software Foundation; either version 2 of the License, or
65(at your option) any later version.
66
67This software is distributed in the hope that it will be useful,
68but WITHOUT ANY WARRANTY; without even the implied warranty of
69MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
70GNU General Public License for more details.
71
72You should have received a copy of the GNU General Public License
73along with this software; if not, write to the Free Software
74Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
75USA.
76
77