summaryrefslogtreecommitdiffstats
path: root/README.hpux
diff options
context:
space:
mode:
authorConstantin Kaplinsky <const@tightvnc.com>2006-05-25 05:36:48 +0000
committerConstantin Kaplinsky <const@tightvnc.com>2006-05-25 05:36:48 +0000
commitd1e4e901e29d8ef27a6583648c7148b1a5b2facf (patch)
treefb34ead4006e43ac22aa6368c6a622320f234261 /README.hpux
parent729598cb00d791bbdfe23ebe0023d3a1c3962f83 (diff)
downloadtigervnc-d1e4e901e29d8ef27a6583648c7148b1a5b2facf.tar.gz
tigervnc-d1e4e901e29d8ef27a6583648c7148b1a5b2facf.zip
Migrating to new directory structure adopted from the RealVNC's source tree. Windows part should be complete. For the Unix part, more changes will follow.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@592 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'README.hpux')
-rw-r--r--README.hpux39
1 files changed, 0 insertions, 39 deletions
diff --git a/README.hpux b/README.hpux
deleted file mode 100644
index be0c56ae..00000000
--- a/README.hpux
+++ /dev/null
@@ -1,39 +0,0 @@
-I have managed to build Xvnc on HPUX but only with some ugly hacking of
-the X tree. The X tree I used as the basis for the build is the XFree86 4.2.0
-tree. The XFree86 4.3.0 tree is unsuitable as it seems to have had some HPUX
-stuff removed from it. I built using the aCC C++ compiler.
-
-Set the following environment variables:
-
- % CXX=/opt/aCC/bin/aCC
- % CFLAGS="+DAportable"
- % CXXFLAGS="+DAportable -AA +W749 +W740"
- % BOOTSTRAPCFLAGS=-Dhpux
- % export CXX CFLAGS CXXFLAGS BOOTSTRAPCFLAGS
-
-Build the main part of the VNC distribution as normal:
-
- % ./configure
- % make
-
-Unpack the X tree and apply the patches in xc.patch:
-
- % gunzip -c X420src-1.tgz | tar xf -
- % patch -Np0 <xc.patch
-
-Then additionally apply the patches in hpux.patch:
-
- % patch -Np0 <hpux.patch
-
-Finally try building the X tree:
-
- % cd xc
- % make World
-
-If it all goes to plan you will be left with Xvnc in xc/programs/Xserver. You
-will probably have to modify the vncserver script to set up a sensible font
-path, since many of the font directories on HPUX are different from the
-defaults compiled into Xvnc.
-
-If anyone can find a neater way of building a VNC-compatible X tree on HPUX
-please let us know (see http://www.tightvnc.com for contact details).