~ubuntu-branches/ubuntu/vivid/gtk-vnc/vivid-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
   GTK VNC  Readme
   ===============

gtk-vnc is a project providing client side APIs for the
RFB protocol / VNC remote desktop technology.

It is built using coroutines allowing it to be completely
asynchronous while remaining single threaded. It provides
two core C libraries, libgvnc for interacting with the core
RFB protocol and libgtk-vnc for a GTK display widget.

There is a traditional Python binding built on PyGTK, and
evolving support for arbitrary languages via the GObject
Introspection system.

For information about the project visit the webpage at:

  http://live.gnome.org/gtk-vnc

To contact developers use the project mailing list at:

  http://mail.gnome.org/mailman/listinfo/gtk-vnc-list

To browse or report bugs, go to our bugzilla page at:

  http://bugzilla.gnome.org/browse.cgi?product=gtk-vnc


Installation notes
------------------

 * GTK2/GTK3: The build currently defaults to using GTK2.
   To enable GTK3 support the flag '--with-gtk=3.0' must
   be passed to configure.

         ./configure --with-gtk=3.0

   Notes on GTK3 support:

    - The traditional python bindings are disabled when GTK3
      is used. Applications should use the GObject introspection
      bindings instead.

    - When built against GTK3, the library name for gtk-vnc
      will become 'gtk-vnc-2.0.so' and the pkg-config file will
      also be 'gtk-vnc-2.0'.

    - The gvnc library is unaffected by GTK2/GTK3 build
      since it only depends on GLib/GIO

 * NetBSD: You must run configure using

    --with-coroutine=gthread

   since any app linking against NetBSD's libpthread.so is
   forbidden from using swapcontext() calls, which is gtk-vnc's
   default coroutine impl. For further information see

    https://bugzilla.gnome.org/show_bug.cgi?id=566148
    http://man.netbsd.org/cgi-bin/man-cgi?pthread++NetBSD-current

 * MinGW: The SASL protocol extension is not available on
   this platform


-- End