summaryrefslogtreecommitdiffstats
path: root/vncterm
Commit message (Collapse)AuthorAgeFilesLines
* mingw32 crosscompile fixes.Christian Beier2009-10-021-0/+2
| | | | | | | | | | | SOCKET is redefined in winsock2.h so #undef it where winsock2.h is included. The changes in rfbproto.c circumvent crosscompiler errors like 'S_IFMT' undeclared ...', the Makefile.am changes avoid building linux specific stuff for a win32 host target. Also added configure option to specify sdl-config. Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* clean up build flagsdscho2009-02-031-2/+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.
* do not always include rfb/keysym.hdscho2006-09-122-0/+2
|
* fix some build issues WRT ultravnc code.runge2006-05-131-2/+2
|
* hide strict ansi stuff if not explicitely turned on; actually use the ↵dscho2005-05-181-0/+2
| | | | socklen_t test from configure.ac
* ANSIfy, fix some warnings from Linus' sparsedscho2005-05-152-1/+2
|
* socketInitDone -> socketStatedscho2005-05-072-3/+4
|
* pointerClient was still static.dscho2005-01-181-9/+2
| | | | | | | | | | | | | | | | | | | | | | 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-3/+9
|
* global structures/functions should have "rfb", "sra" or "zrle" as prefix,dscho2004-08-303-34/+34
| | | | while structure members should not
* convert c++ comments to c commentsdscho2004-06-184-5/+3
|
* move the library into libvncserver/, x11vnc into x11vnc/dscho2004-05-251-2/+2
|
* inherit CFLAGSdscho2004-01-191-1/+1
|
* fix usage of non-existent attribute bufferdscho2004-01-191-8/+11
|
* 2002-09-11 Mark McLoughlin <mark@skynet.ie>markmc2003-09-111-361/+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-6/+5
|
* added --disable-cxx flag to configuredscho2003-08-291-4/+4
|
* using autoconf 1.6dscho2003-08-181-32/+46
|
* rfbErr introduceddscho2003-08-062-5/+5
|
* API change: Bool, KeySym, Pixel get prefix "rfb"; constants in rfbconfig.h ↵dscho2003-07-305-73/+58
| | | | get prefix "LIBVNCSERVER_"
* fixed maxRectsPerUpdate with Tight encoding bug; some autoconfing; stderr ↵dscho2003-07-285-54/+69
| | | | should not be used in a library (use rfbLog instead)
* another try to make CVS more helpful with configuredscho2003-07-101-0/+348
|
* the correct way to include rfb.h is now "#include <rfb/rfb.h>"dscho2003-02-202-1/+3
|
* fixed LinuxVNC coloursdscho2003-02-102-3/+17
|
* fixed dependecy to libvncserver.a; if the lib is newer, the programs are ↵dscho2003-02-101-1/+1
| | | | relinked
* added colourmapexample; fixed LinuxVNC to show the right coloursdscho2003-02-101-1/+4
|
* support for OS X is better nowdscho2003-02-092-7/+14
|
* included vnctermdscho2003-02-0911-0/+1259