Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
15f3a61e
Commit
15f3a61e
authored
21 years ago
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compile fix for cygwin
parent
11e3f6a6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
5 deletions
+20
-5
ChangeLog
ChangeLog
+3
-0
cargs.c
cargs.c
+1
-1
configure.ac
configure.ac
+4
-0
Makefile.am
contrib/Makefile.am
+5
-1
rfbserver.c
rfbserver.c
+5
-3
vncauth.c
vncauth.c
+2
-0
No files found.
ChangeLog
View file @
15f3a61e
2004-01-16 Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
* compile fix for cygwin
2004-01-09 Karl Runge <runge@karlrunge.com>
* x11vnc options -allow, -localhost, -nodragging, -input_skip
* minimize memory usage under -nofb
...
...
This diff is collapsed.
Click to expand it.
cargs.c
View file @
15f3a61e
...
...
@@ -53,7 +53,7 @@ rfbProcessArguments(rfbScreenInfoPtr rfbScreen,int* argc, char *argv[])
{
int
i
,
i1
;
if
(
!
argc
)
return
;
if
(
!
argc
)
return
TRUE
;
for
(
i
=
i1
=
1
;
i
<
*
argc
;)
{
if
(
strcmp
(
argv
[
i
],
"-help"
)
==
0
)
{
...
...
This diff is collapsed.
Click to expand it.
configure.ac
View file @
15f3a61e
...
...
@@ -103,6 +103,10 @@ AC_CHECK_LIB(nsl,gethostbyname)
AC_CHECK_LIB(socket,socket)
AC_CHECK_FUNCS([ftime gethostbyname gethostname gettimeofday inet_ntoa memmove memset mkfifo select socket strchr strcspn strdup strerror strstr setsid])
# check, if shmget is in cygipc.a
AC_CHECK_LIB(cygipc,shmget)
AM_CONDITIONAL(CYGIPC, test "$HAVE_CYGIPC" = "true")
# Check if /dev/vcsa1 exists, if so, define LINUX
AM_CONDITIONAL(LINUX, test -c /dev/vcsa1)
...
...
This diff is collapsed.
Click to expand it.
contrib/Makefile.am
View file @
15f3a61e
...
...
@@ -3,11 +3,15 @@ LDADD = ../libvncserver.a
noinst_PROGRAMS
=
zippy
if
CYGIPC
LD_CYGIPC
=
-lcygipc
endif
if
HAVE_X
bin_PROGRAMS
=
x11vnc
x11vnc_SOURCES
=
x11vnc.c
INCLUDES
=
@X_CFLAGS@
x11vnc_LDADD
=
@X_LIBS@
$(LDADD)
x11vnc_LDADD
=
@X_LIBS@
$(LD
_CYGIPC)
$(LD
ADD)
endif
zippy_SOURCES
=
zippy.c
...
...
This diff is collapsed.
Click to expand it.
rfbserver.c
View file @
15f3a61e
...
...
@@ -228,7 +228,6 @@ rfbNewTCPOrUDPClient(rfbScreen,sock,isUDP)
rfbClientPtr
cl
,
cl_
;
struct
sockaddr_in
addr
;
size_t
addrlen
=
sizeof
(
struct
sockaddr_in
);
int
i
;
cl
=
(
rfbClientPtr
)
calloc
(
sizeof
(
rfbClientRec
),
1
);
...
...
@@ -317,8 +316,11 @@ rfbNewTCPOrUDPClient(rfbScreen,sock,isUDP)
#ifdef LIBVNCSERVER_HAVE_LIBJPEG
cl
->
tightCompressLevel
=
TIGHT_DEFAULT_COMPRESSION
;
cl
->
tightQualityLevel
=
-
1
;
for
(
i
=
0
;
i
<
4
;
i
++
)
cl
->
zsActive
[
i
]
=
FALSE
;
{
int
i
;
for
(
i
=
0
;
i
<
4
;
i
++
)
cl
->
zsActive
[
i
]
=
FALSE
;
}
#endif
cl
->
enableCursorShapeUpdates
=
FALSE
;
...
...
This diff is collapsed.
Click to expand it.
vncauth.c
View file @
15f3a61e
...
...
@@ -22,6 +22,8 @@
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <rfb/rfbproto.h>
#include "d3des.h"
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment