summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* clean up build flagsdscho2009-02-031-1/+1
| | | | | | | | | | | | | | | | | The flag handling (both compiler options and include paths) are a mess at the moment. There is no point in forcing "-O2 -g" when these are already the defaults, and if someone changes the defaults, chances are good they don't want you clobbering their choices. The -Wall flag should be handled in configure and thrown into CFLAGS once rather than every Makefile.am. Plus, this way we can control which compilers the flag actually gets used with. Finally, the INCLUDES variable is for -I paths, not AM_CFLAGS. Nor should it contain -I. as this is already in the default includes setup. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* Build shared libraries per defaultdscho2007-03-301-1/+1
| | | | Thanks to Guillaume Rousse, we now use libtool to build shared libraries.
* Make VPATH building work with -I $(top_srcdir) for rfb/rfb.hrunge2006-04-261-1/+1
|
* DEFINES -> AM_CFLAGSdscho2005-10-061-1/+1
|
* ANSIfy, fix some warnings from Linus' sparsedscho2005-05-151-4/+4
|
* pointerClient was still static.dscho2005-01-181-3/+0
| | | | | | | | | | | | | | | | | | | | | | do not make requestedRegion empty without reason. the cursor handling for clients which don't handle CursorShape updates was completely broken. It originally was very complicated for performance reasons, however, in most cases it made performance even worse, because at idle times there was way too much checking going on, and furthermore, sometimes unnecessary updates were inevitable. The code now is much more elegant: the ClientRec structure knows exactly where it last painted the cursor, and the ScreenInfo structure knows where the cursor shall be. As a consequence there is no more rfbDrawCursor()/rfbUndrawCursor(), no more dontSendFramebufferUpdate, and no more isCursorDrawn. It is now possible to have clients which understand CursorShape updates and clients which don't at the same time. rfbSetCursor no longer has the option freeOld; this is obsolete, as the cursor structure knows what to free and what not.
* support MinGW32!dscho2004-12-011-1/+1
|
* global structures/functions should have "rfb", "sra" or "zrle" as prefix,dscho2004-08-301-4/+4
| | | | while structure members should not
* add client_examples/, add SDLvncviewer, libvncclient API changes, suppress ↵dscho2004-06-071-1/+1
| | | | automake CFLAGS nagging
* move the library into libvncserver/, x11vnc into x11vnc/dscho2004-05-253-6897/+1
|
* x11vnc: -gone, -passwdfile, -o logfile; add view-only to -acceptrunge2004-05-222-137/+577
|
* x11vnc: more -inetd fixes.runge2004-05-141-3/+34
|
* x11vnc: less fprintf under -q so '-q -inetd' has no stderr output.runge2004-05-142-25/+43
|
* x11vnc: improvements to -accept popup: yes/no buttons and timeout.runge2004-05-132-30/+100
|
* x11vnc: clean up -Wall warnings.runge2004-05-082-27/+26
|
* x11vnc: add -accept some-command/xmessage/popuprunge2004-05-082-7/+268
|
* x11vnc: mouse -> keystroke and keystroke -> mouse remappings.runge2004-05-062-127/+445
|
* x11vnc: add -auth, more -cursorpos and -nofb workrunge2004-04-282-37/+162
|
* x11vnc: add -cursorpos for Cursor Position Updates, and -sigpiperunge2004-04-202-8/+138
|
* x11vnc: do not send selection unless all clients are in RFB_NORMAL state.runge2004-04-132-7/+51
| | | | increase rfbMaxClientWait when threaded to avoid ReadExact() timeouts for some viewers.
* x11vnc options -blackout, -xinerama, -xwarppointer. check cargs.runge2004-04-082-260/+814
| | | | modify configure.ac to pick up -lXinerama
* x11vnc options -vncconnect, -connect, -remap,runge2004-03-112-56/+511
| | | | | | -debug_pointer, and -debug_keyboard add reverse connections, keysym remapping, and debug output option
* x11vnc options -nosel -noprimary -visual.runge2004-02-202-63/+655
| | | | | | add clipboard/selection handling. add visual option (mostly for testing and workarounds). improve shm cleanup on failures.
* handle mouse button number mismatchrunge2004-01-192-73/+932
| | | | | | improved pointer input handling during drags, etc. somewhat faster copy_tiles() -> copy_tiles() x11vnc options -buttonmap -old_pointer -old_copytile
* compile fix for cygwindscho2004-01-161-1/+5
|
* x11vnc options -allow, -localhost, -nodragging, -input_skiprunge2004-01-102-25/+177
| | | | minimize memory usage under -nofb
* x11vnc: XBell events, -nofb, -notruecolor, misc. cleaningrunge2003-12-092-46/+152
|
* -inetd, -noshm and friends addeddscho2003-11-111-10/+116
|
* 2002-09-11 Mark McLoughlin <mark@skynet.ie>markmc2003-09-111-341/+0
| | | | | | | * Makefile.in, */Makefile.in, aclocal.m4, bootstrap.sh, config.h.in, configure, depcomp, install-sh, missing, mkinstalldirs, Removed auto-generated files from CVS.
* ZRLE no longer uses C++, but Cdscho2003-09-081-2/+1
|
* Karl Runge: 8bpp handling now much better, single window also, many improvementsdscho2003-08-181-63/+199
|
* using autoconf 1.6dscho2003-08-181-26/+39
|
* rfbErr introduceddscho2003-08-061-4/+4
|
* API change: Bool, KeySym, Pixel get prefix "rfb"; constants in rfbconfig.h ↵dscho2003-07-303-86/+55
| | | | get prefix "LIBVNCSERVER_"
* fixed maxRectsPerUpdate with Tight encoding bug; some autoconfing; stderr ↵dscho2003-07-283-42/+56
| | | | should not be used in a library (use rfbLog instead)
* another try to make CVS more helpful with configuredscho2003-07-101-0/+329
|
* added ChangeLog for x11vncdscho2003-04-031-0/+51
|
* new version from Karl!dscho2003-04-031-265/+1187
|
* the correct way to include rfb.h is now "#include <rfb/rfb.h>"dscho2003-02-203-3/+4
|
* fixed dependecy to libvncserver.a; if the lib is newer, the programs are ↵dscho2003-02-101-1/+1
| | | | relinked
* source from CVS always will need a current autoconf/automakedscho2003-02-091-329/+0
|
* I give up supporting old autoconf/automake; now require at least 2.52dscho2003-02-091-0/+329
|
* converted CARD{8,16,32} to uint{8,16,32}_t and included support for stdint.hdscho2003-02-091-1/+1
|
* make dist fixed; make rpm introduceddscho2003-02-091-2/+5
|
* removed Makefiles; these are generated nowdscho2003-02-082-340/+1
|
* ignore generated filesdscho2003-02-081-0/+1
|
* missing filesdscho2003-02-081-0/+4
|
* autoconf'ed everythingdscho2003-02-082-22/+342
|
* moved files to include; moved a file to examples/dscho2003-02-072-5/+32
|
* strange, but standard X11 behaviour from Sun keymappings...dscho2002-12-251-0/+19
|