Commit faadd484 authored by Christian Beier's avatar Christian Beier

Rename 'classes' dir to 'webclients'.

parent 7cb0e4a9
...@@ -59,7 +59,7 @@ make ...@@ -59,7 +59,7 @@ make
%makeinstall includedir="%{buildroot}%{_includedir}/rfb" %makeinstall includedir="%{buildroot}%{_includedir}/rfb"
%{__install} -d -m0755 %{buildroot}%{_datadir}/x11vnc/classes %{__install} -d -m0755 %{buildroot}%{_datadir}/x11vnc/classes
%{__install} classes/VncViewer.jar classes/index.vnc \ %{__install} webclients/VncViewer.jar webclients/index.vnc \
%{buildroot}%{_datadir}/x11vnc/classes %{buildroot}%{_datadir}/x11vnc/classes
%clean %clean
......
...@@ -2,8 +2,8 @@ if WITH_X11VNC ...@@ -2,8 +2,8 @@ if WITH_X11VNC
X11VNC=x11vnc X11VNC=x11vnc
endif endif
SUBDIRS=libvncserver examples libvncclient vncterm classes client_examples test $(X11VNC) SUBDIRS=libvncserver examples libvncclient vncterm webclients client_examples test $(X11VNC)
DIST_SUBDIRS=libvncserver examples libvncclient vncterm classes client_examples test DIST_SUBDIRS=libvncserver examples libvncclient vncterm webclients client_examples test
EXTRA_DIST = CMakeLists.txt rfb/rfbint.h.cmake rfb/rfbconfig.h.cmake EXTRA_DIST = CMakeLists.txt rfb/rfbint.h.cmake rfb/rfbconfig.h.cmake
bin_SCRIPTS = libvncserver-config bin_SCRIPTS = libvncserver-config
......
...@@ -163,7 +163,7 @@ If you already have a socket to talk to, just set rfbScreen->inetdSock ...@@ -163,7 +163,7 @@ If you already have a socket to talk to, just set rfbScreen->inetdSock
To also start an HTTP server (running on port 5800+display_number), you have To also start an HTTP server (running on port 5800+display_number), you have
to set rfbScreen->httpdDir to a directory containing vncviewer.jar and to set rfbScreen->httpdDir to a directory containing vncviewer.jar and
index.vnc (like the included "classes" directory). index.vnc (like the included "webclients" directory).
Hooks and IO functions Hooks and IO functions
---------------------- ----------------------
......
...@@ -916,8 +916,8 @@ AC_CONFIG_FILES([Makefile ...@@ -916,8 +916,8 @@ AC_CONFIG_FILES([Makefile
examples/Makefile examples/Makefile
examples/android/Makefile examples/android/Makefile
vncterm/Makefile vncterm/Makefile
classes/Makefile webclients/Makefile
classes/ssl/Makefile webclients/ssl/Makefile
libvncclient/Makefile libvncclient/Makefile
client_examples/Makefile client_examples/Makefile
test/Makefile test/Makefile
......
...@@ -288,7 +288,7 @@ int main(int argc,char** argv) ...@@ -288,7 +288,7 @@ int main(int argc,char** argv)
rfbScreen->ptrAddEvent = doptr; rfbScreen->ptrAddEvent = doptr;
rfbScreen->kbdAddEvent = dokey; rfbScreen->kbdAddEvent = dokey;
rfbScreen->newClientHook = newclient; rfbScreen->newClientHook = newclient;
rfbScreen->httpDir = "../classes"; rfbScreen->httpDir = "../webclients";
rfbScreen->httpEnableProxyConnect = TRUE; rfbScreen->httpEnableProxyConnect = TRUE;
initBuffer((unsigned char*)rfbScreen->frameBuffer); initBuffer((unsigned char*)rfbScreen->frameBuffer);
......
...@@ -75,7 +75,7 @@ int main(int argc,char** argv) ...@@ -75,7 +75,7 @@ int main(int argc,char** argv)
rfbScreen->kbdAddEvent = HandleKey; rfbScreen->kbdAddEvent = HandleKey;
/* enable http */ /* enable http */
rfbScreen->httpDir = "../classes"; rfbScreen->httpDir = "../webclients";
/* allocate picture and read it */ /* allocate picture and read it */
rfbScreen->frameBuffer = (char*)malloc(paddedWidth*bytesPerPixel*height); rfbScreen->frameBuffer = (char*)malloc(paddedWidth*bytesPerPixel*height);
......
...@@ -70,7 +70,7 @@ int main(int argc,char** argv) ...@@ -70,7 +70,7 @@ int main(int argc,char** argv)
rfbScreen->kbdAddEvent = HandleKey; rfbScreen->kbdAddEvent = HandleKey;
/* enable http */ /* enable http */
rfbScreen->httpDir = "../classes"; rfbScreen->httpDir = "../webclients";
/* allocate picture and read it */ /* allocate picture and read it */
rfbScreen->frameBuffer = (char*)malloc(paddedWidth*3*height); rfbScreen->frameBuffer = (char*)malloc(paddedWidth*3*height);
......
...@@ -1097,7 +1097,7 @@ rfbBool rfbUpdateClient(rfbClientPtr cl); ...@@ -1097,7 +1097,7 @@ rfbBool rfbUpdateClient(rfbClientPtr cl);
To also start an HTTP server (running on port 5800+display_number), you have To also start an HTTP server (running on port 5800+display_number), you have
to set rfbScreenInfo::httpDir to a directory containing vncviewer.jar and to set rfbScreenInfo::httpDir to a directory containing vncviewer.jar and
index.vnc (like the included "classes" directory). index.vnc (like the included "webclients" directory).
@section making_it_interactive Making it interactive @section making_it_interactive Making it interactive
......
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment