Tim Waugh | d822c36 | 2014-09-03 12:38:15 +0100 | [diff] [blame] | 1 | diff -up xorg-server-1.16.0/configure.ac.vnc xorg-server-1.16.0/configure.ac |
| 2 | --- xorg-server-1.16.0/configure.ac.vnc 2014-07-17 08:00:51.000000000 +0100 |
| 3 | +++ xorg-server-1.16.0/configure.ac 2014-09-03 10:21:49.506109235 +0100 |
| 4 | @@ -74,6 +74,7 @@ dnl forcing an entire recompile.x |
| 5 | AC_CONFIG_HEADERS(include/version-config.h) |
| 6 | |
| 7 | AM_PROG_AS |
| 8 | +AC_PROG_CXX |
| 9 | AC_PROG_LN_S |
| 10 | LT_PREREQ([2.2]) |
| 11 | LT_INIT([disable-static win32-dll]) |
| 12 | @@ -1795,6 +1796,10 @@ if test "x$XVFB" = xyes; then |
| 13 | AC_SUBST([XVFB_SYS_LIBS]) |
| 14 | fi |
| 15 | |
| 16 | +dnl Xvnc DDX |
| 17 | +AC_SUBST([XVNC_CPPFLAGS], ["-DHAVE_DIX_CONFIG_H $XSERVER_CFLAGS"]) |
Tim Waugh | 6f92b79 | 2014-09-04 16:25:12 +0100 | [diff] [blame] | 18 | +AC_SUBST([XVNC_LIBS], ["$FB_LIB $FIXES_LIB $XEXT_LIB $CONFIG_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $DRI3_LIB $PRESENT_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB $MAIN_LIB"]) |
Tim Waugh | d822c36 | 2014-09-03 12:38:15 +0100 | [diff] [blame] | 19 | +AC_SUBST([XVNC_SYS_LIBS], ["$GLX_SYS_LIBS"]) |
| 20 | |
| 21 | dnl Xnest DDX |
| 22 | |
| 23 | @@ -1830,6 +1835,8 @@ if test "x$XORG" = xauto; then |
| 24 | fi |
| 25 | AC_MSG_RESULT([$XORG]) |
| 26 | |
| 27 | +AC_DEFINE_UNQUOTED(XORG_VERSION_CURRENT, [$VENDOR_RELEASE], [Current Xorg version]) |
| 28 | + |
| 29 | if test "x$XORG" = xyes; then |
| 30 | XORG_DDXINCS='-I$(top_srcdir)/hw/xfree86 -I$(top_srcdir)/hw/xfree86/include -I$(top_srcdir)/hw/xfree86/common' |
| 31 | XORG_OSINCS='-I$(top_srcdir)/hw/xfree86/os-support -I$(top_srcdir)/hw/xfree86/os-support/bus -I$(top_srcdir)/os' |
| 32 | @@ -2051,7 +2058,6 @@ if test "x$XORG" = xyes; then |
| 33 | AC_DEFINE(XORG_SERVER, 1, [Building Xorg server]) |
| 34 | AC_DEFINE(XORGSERVER, 1, [Building Xorg server]) |
| 35 | AC_DEFINE(XFree86Server, 1, [Building XFree86 server]) |
| 36 | - AC_DEFINE_UNQUOTED(XORG_VERSION_CURRENT, [$VENDOR_RELEASE], [Current Xorg version]) |
| 37 | AC_DEFINE(NEED_XF86_TYPES, 1, [Need XFree86 typedefs]) |
| 38 | AC_DEFINE(NEED_XF86_PROTOTYPES, 1, [Need XFree86 helper functions]) |
| 39 | AC_DEFINE(__XSERVERNAME__, "Xorg", [Name of X server]) |
| 40 | @@ -2589,6 +2595,7 @@ hw/dmx/Makefile |
| 41 | hw/dmx/man/Makefile |
| 42 | hw/vfb/Makefile |
| 43 | hw/vfb/man/Makefile |
| 44 | +hw/vnc/Makefile |
| 45 | hw/xnest/Makefile |
| 46 | hw/xnest/man/Makefile |
| 47 | hw/xwin/Makefile |
| 48 | diff -up xorg-server-1.16.0/hw/Makefile.am.vnc xorg-server-1.16.0/hw/Makefile.am |
| 49 | --- xorg-server-1.16.0/hw/Makefile.am.vnc 2014-04-16 21:24:00.000000000 +0100 |
| 50 | +++ xorg-server-1.16.0/hw/Makefile.am 2014-09-03 10:21:49.507109234 +0100 |
| 51 | @@ -38,7 +38,8 @@ SUBDIRS = \ |
| 52 | $(DMX_SUBDIRS) \ |
| 53 | $(KDRIVE_SUBDIRS) \ |
| 54 | $(XQUARTZ_SUBDIRS) \ |
| 55 | - $(XWAYLAND_SUBDIRS) |
| 56 | + $(XWAYLAND_SUBDIRS) \ |
| 57 | + vnc |
| 58 | |
| 59 | DIST_SUBDIRS = dmx xfree86 vfb xnest xwin xquartz kdrive xwayland |
| 60 | |
| 61 | diff -up xorg-server-1.16.0/mi/miinitext.c.vnc xorg-server-1.16.0/mi/miinitext.c |
| 62 | --- xorg-server-1.16.0/mi/miinitext.c.vnc 2014-04-16 21:24:00.000000000 +0100 |
| 63 | +++ xorg-server-1.16.0/mi/miinitext.c 2014-09-03 10:21:49.508109234 +0100 |
| 64 | @@ -111,6 +111,10 @@ SOFTWARE. |
| 65 | #include "micmap.h" |
| 66 | #include "globals.h" |
| 67 | |
| 68 | +#ifdef TIGERVNC |
Pierre Ossman | d959e7a | 2016-09-22 16:22:52 +0200 | [diff] [blame] | 69 | +extern void vncExtensionInit(void); |
Tim Waugh | d822c36 | 2014-09-03 12:38:15 +0100 | [diff] [blame] | 70 | +#endif |
| 71 | + |
| 72 | /* The following is only a small first step towards run-time |
| 73 | * configurable extensions. |
| 74 | */ |
| 75 | @@ -235,6 +239,9 @@ EnableDisableExtensionError(const char * |
| 76 | |
| 77 | /* List of built-in (statically linked) extensions */ |
| 78 | static const ExtensionModule staticExtensions[] = { |
| 79 | +#ifdef TIGERVNC |
| 80 | + {vncExtensionInit, "VNC-EXTENSION", NULL}, |
| 81 | +#endif |
| 82 | {GEExtensionInit, "Generic Event Extension", &noGEExtension}, |
| 83 | {ShapeExtensionInit, "SHAPE", NULL}, |
| 84 | #ifdef MITSHM |
| 85 | diff -up xorg-server-1.16.0/os/WaitFor.c.vnc xorg-server-1.16.0/os/WaitFor.c |
| 86 | --- xorg-server-1.16.0/os/WaitFor.c.vnc 2014-02-05 03:08:57.000000000 +0000 |
| 87 | +++ xorg-server-1.16.0/os/WaitFor.c 2014-09-03 10:21:49.508109234 +0100 |
| 88 | @@ -125,6 +125,9 @@ static void DoTimer(OsTimerPtr timer, CA |
| 89 | static void CheckAllTimers(void); |
| 90 | static OsTimerPtr timers = NULL; |
| 91 | |
| 92 | +extern void vncWriteBlockHandler(fd_set *fds); |
| 93 | +extern void vncWriteWakeupHandler(int nfds, fd_set *fds); |
| 94 | + |
| 95 | /***************** |
| 96 | * WaitForSomething: |
| 97 | * Make the server suspend until there is |
| 98 | @@ -150,6 +153,7 @@ WaitForSomething(int *pClientsReady) |
| 99 | INT32 timeout = 0; |
| 100 | fd_set clientsReadable; |
| 101 | fd_set clientsWritable; |
| 102 | + fd_set socketsWritable; |
| 103 | int curclient; |
| 104 | int selecterr; |
| 105 | static int nready; |
| 106 | @@ -212,6 +216,9 @@ WaitForSomething(int *pClientsReady) |
| 107 | XFD_COPYSET(&AllSockets, &LastSelectMask); |
| 108 | } |
| 109 | |
| 110 | + FD_ZERO(&socketsWritable); |
| 111 | + vncWriteBlockHandler(&socketsWritable); |
| 112 | + |
| 113 | BlockHandler((void *) &wt, (void *) &LastSelectMask); |
| 114 | if (NewOutputPending) |
| 115 | FlushAllOutput(); |
Tim Waugh | 9e3dcea | 2014-09-09 14:40:17 +0100 | [diff] [blame] | 116 | @@ -223,10 +223,20 @@ WaitForSomething(int *pClientsReady) |
| 117 | i = Select(MaxClients, &LastSelectMask, &clientsWritable, NULL, wt); |
| 118 | } |
| 119 | else { |
| 120 | - i = Select(MaxClients, &LastSelectMask, NULL, NULL, wt); |
| 121 | + if (AnyClientsWriteBlocked) |
| 122 | + XFD_ORSET(&socketsWritable, &ClientsWriteBlocked, &socketsWritable); |
| 123 | + |
| 124 | + if (XFD_ANYSET(&socketsWritable)) { |
| 125 | + i = Select(MaxClients, &LastSelectMask, &socketsWritable, NULL, wt); |
| 126 | + if (AnyClientsWriteBlocked) |
| 127 | + XFD_ANDSET(&clientsWritable, &socketsWritable, &ClientsWriteBlocked); |
| 128 | + } else { |
| 129 | + i = Select(MaxClients, &LastSelectMask, NULL, NULL, wt); |
| 130 | + } |
| 131 | } |
| 132 | selecterr = GetErrno(); |
| 133 | WakeupHandler(i, (void *) &LastSelectMask); |
| 134 | + vncWriteWakeupHandler(i, &socketsWritable); |
| 135 | if (i <= 0) { /* An error or timeout occurred */ |
| 136 | if (dispatchException) |
| 137 | return 0; |