platform/upstream/freerdp.git
12 years agobuild: Added option WITH_NEON
Bernhard Miklautz [Tue, 24 Jan 2012 08:04:02 +0000 (09:04 +0100)]
build: Added option WITH_NEON

Enables neon optimized rfx decoder

12 years agoMerge pull request #363 from pjd/crypto
Marc-André Moreau [Mon, 23 Jan 2012 18:18:47 +0000 (10:18 -0800)]
Merge pull request #363 from pjd/crypto

rdp_client_establish_keys() simplifications.

12 years agoMerge pull request #362 from bmiklautz/buildsystemfixes
Marc-André Moreau [Mon, 23 Jan 2012 18:18:20 +0000 (10:18 -0800)]
Merge pull request #362 from bmiklautz/buildsystemfixes

Build system fixes

12 years ago- Rename rdp_establish_keys() to rdp_client_establish_keys() as it is only
Pawel Jakub Dawidek [Mon, 23 Jan 2012 17:20:10 +0000 (18:20 +0100)]
- Rename rdp_establish_keys() to rdp_client_establish_keys() as it is only
  responsible for establishing keys on the client side.
- Simplify rdp_client_establish_keys() by using rdp_write_header() and
  rdp_write_security_header() function instead of reimplementing them
  and by using existing defines instead of magic values.

12 years agobuild: use WITH_XXX instead of XXX_FOUND
Bernhard Miklautz [Mon, 23 Jan 2012 13:19:40 +0000 (14:19 +0100)]
build: use WITH_XXX instead of XXX_FOUND

To check if something should be en- or disabled WITH_XXX
should be used and not XXX_FOUND.

If XXX_FOUND is used and something gets disabled afterwards (by setting
WITH_XXX to OFF) it will be compiled in as long as XXX_FOUND is found in
cmake's cache file. So disabling a feature, or option, without
clearing the CMakeCache.txt might result in builds with unwanted
configuration.

12 years agobuild: Honor REQUIRE if set in find_package
Bernhard Miklautz [Mon, 23 Jan 2012 12:46:42 +0000 (13:46 +0100)]
build: Honor REQUIRE if set in find_package

FIND_PACKAGE_HANDLE_STANDARD_ARGS handles REQUIRE only correct if
called with the same package name as find_package was called with.

The returned xxxx_FOUND is still uppercase.

12 years agoChanged cmake find prefix for pulseaudio.
Bernhard Miklautz [Fri, 20 Jan 2012 11:32:27 +0000 (12:32 +0100)]
Changed cmake find prefix for pulseaudio.

Now option (WITH_PULSEAUDIO) and package prefix (PULSEAUDIO_FOUND) match.

12 years agoFixed optimization flags for release builds.
Bernhard Miklautz [Fri, 20 Jan 2012 10:37:55 +0000 (11:37 +0100)]
Fixed optimization flags for release builds.

cmake uses CMAKE_C_FLAGS_RELEASE in addition to CMAKE_C_FLAGS for
make based build systems. Without the fix the optimization level
argument is set twice (-O2 -O3) and -O3 was used instead of -O2.

12 years agoMerge pull request #361 from floppym/client-server-options
Marc-André Moreau [Sun, 22 Jan 2012 17:27:29 +0000 (09:27 -0800)]
Merge pull request #361 from floppym/client-server-options

cmake: Add options to enable/disable client/server targets.

12 years agoChange ENABLE_{CLIENT,SERVER} to WITH_{CLIENT,SERVER}.
Mike Gilbert [Sun, 22 Jan 2012 17:26:30 +0000 (12:26 -0500)]
Change ENABLE_{CLIENT,SERVER} to WITH_{CLIENT,SERVER}.

12 years agocmake: Add options to enable/disable client/server targets.
Mike Gilbert [Sun, 22 Jan 2012 17:14:06 +0000 (12:14 -0500)]
cmake: Add options to enable/disable client/server targets.

12 years agoMerge pull request #358 from pjd/crypto
Marc-André Moreau [Thu, 19 Jan 2012 04:40:43 +0000 (20:40 -0800)]
Merge pull request #358 from pjd/crypto

Crypto

12 years agoWhitespace fixes.
Pawel Jakub Dawidek [Thu, 19 Jan 2012 04:36:23 +0000 (05:36 +0100)]
Whitespace fixes.

12 years ago- Simplify security_mac_signature() API.
Pawel Jakub Dawidek [Thu, 19 Jan 2012 04:07:30 +0000 (05:07 +0100)]
- Simplify security_mac_signature() API.
- Introduce implementation of security_salted_mac_signature() that would be
  used to handle packets with SEC_SECURE_CHECKSUM flag.

12 years agoImplement signature verification in Server Security Data packet.
Pawel Jakub Dawidek [Thu, 19 Jan 2012 03:42:19 +0000 (04:42 +0100)]
Implement signature verification in Server Security Data packet.
Because this signature doesn't protect against anything, only warn
the user if it is invalid.

12 years agoIntroduce more complete RSA API that implements:
Pawel Jakub Dawidek [Thu, 19 Jan 2012 03:40:29 +0000 (04:40 +0100)]
Introduce more complete RSA API that implements:
- crypto_rsa_public_encrypt()
- crypto_rsa_public_decrypt()
- crypto_rsa_private_encrypt()
- crypto_rsa_private_decrypt()

12 years agoAdd Terminal Services Signing Keys.
Pawel Jakub Dawidek [Thu, 19 Jan 2012 03:39:31 +0000 (04:39 +0100)]
Add Terminal Services Signing Keys.

12 years agoUse CRYPTO_*_DIGEST_LENGTH defines instead of magic values.
Pawel Jakub Dawidek [Thu, 19 Jan 2012 03:34:48 +0000 (04:34 +0100)]
Use CRYPTO_*_DIGEST_LENGTH defines instead of magic values.

12 years agoIntroduce CRYPTO_SHA1_DIGEST_LENGTH and CRYPTO_MD5_DIGEST_LENGTH that hold
Pawel Jakub Dawidek [Thu, 19 Jan 2012 03:33:38 +0000 (04:33 +0100)]
Introduce CRYPTO_SHA1_DIGEST_LENGTH and CRYPTO_MD5_DIGEST_LENGTH that hold
number of bytes needed for a given hash.

12 years agoMerge pull request #353 from bmiklautz/x11includepathfixes
Marc-André Moreau [Tue, 17 Jan 2012 20:03:09 +0000 (12:03 -0800)]
Merge pull request #353 from bmiklautz/x11includepathfixes

Changed include path for X11 and extensions.

12 years agoMerge pull request #350 from pjd/fixes
Marc-André Moreau [Tue, 17 Jan 2012 20:02:57 +0000 (12:02 -0800)]
Merge pull request #350 from pjd/fixes

Fixes

12 years agoChanged include path for X11 and extensions.
Bernhard Miklautz [Tue, 17 Jan 2012 17:22:10 +0000 (18:22 +0100)]
Changed include path for X11 and extensions.

X11 and X11/extensions should not be part of X11 include path
if X11/xxx.h or X11/extensions/xxx.h is used in source files.

12 years agoIntroduce SIGNATURE_ALG_RSA and KEY_EXCHANGE_ALG_RSA defines and use them
Pawel Jakub Dawidek [Tue, 17 Jan 2012 16:55:31 +0000 (17:55 +0100)]
Introduce SIGNATURE_ALG_RSA and KEY_EXCHANGE_ALG_RSA defines and use them
instead of magic values.

12 years agoPROTOCOL_RDP is 0, so don't perform bitwise operations on it.
Pawel Jakub Dawidek [Tue, 17 Jan 2012 16:52:12 +0000 (17:52 +0100)]
PROTOCOL_RDP is 0, so don't perform bitwise operations on it.

12 years agoMerge pull request #349 from pjd/mcs_fixes
Marc-André Moreau [Tue, 17 Jan 2012 13:27:16 +0000 (05:27 -0800)]
Merge pull request #349 from pjd/mcs_fixes

MCS fixes

12 years agoThe ber_write_length() function can store variable number of bytes (one or
Pawel Jakub Dawidek [Tue, 17 Jan 2012 09:45:10 +0000 (10:45 +0100)]
The ber_write_length() function can store variable number of bytes (one or
three). We can't tell until we write other data and know the length, so don't
assume how much space will by consumed to store length. Bug was observed with
the mcs_write_connect_response() function, where the function assumed that
application tag will take three bytes, but it was taking five.

12 years agoChangeLog: added FreeRDP 1.0.0 changes 1.0.0
Marc-André Moreau [Mon, 16 Jan 2012 17:52:14 +0000 (12:52 -0500)]
ChangeLog: added FreeRDP 1.0.0 changes

12 years agoxfreerdp: updated man page
Marc-André Moreau [Mon, 16 Jan 2012 17:17:50 +0000 (12:17 -0500)]
xfreerdp: updated man page

12 years agoREADME: update
Marc-André Moreau [Mon, 16 Jan 2012 16:54:08 +0000 (11:54 -0500)]
README: update

12 years agowfreerdp: fix warnings and color conversion
Marc-André Moreau [Mon, 16 Jan 2012 16:40:18 +0000 (11:40 -0500)]
wfreerdp: fix warnings and color conversion

12 years agoMerge pull request #347 from pjd/pullreq
Marc-André Moreau [Mon, 16 Jan 2012 15:18:50 +0000 (07:18 -0800)]
Merge pull request #347 from pjd/pullreq

Use of stream_read() / stream_write()

12 years agolibfreerdp-gdi: fix gdi_Glyph_Free() segfault
Marc-André Moreau [Mon, 16 Jan 2012 15:13:23 +0000 (10:13 -0500)]
libfreerdp-gdi: fix gdi_Glyph_Free() segfault

12 years agoMake use of stream_read().
Pawel Jakub Dawidek [Mon, 16 Jan 2012 01:50:02 +0000 (02:50 +0100)]
Make use of stream_read().

12 years agoUse stream_read() instead of memcpy() + stream_seek().
Pawel Jakub Dawidek [Mon, 16 Jan 2012 01:24:26 +0000 (02:24 +0100)]
Use stream_read() instead of memcpy() + stream_seek().

12 years agoUse stream_write() instead of memcpy() + stream_seek().
Pawel Jakub Dawidek [Mon, 16 Jan 2012 01:15:13 +0000 (02:15 +0100)]
Use stream_write() instead of memcpy() + stream_seek().

12 years agoIf we are server, our encryption key is client's decryption key and vice-versa.
Pawel Jakub Dawidek [Sun, 15 Jan 2012 19:52:27 +0000 (20:52 +0100)]
If we are server, our encryption key is client's decryption key and vice-versa.

12 years agochannels/drdynvc/audin: fix typo in header
Marc-André Moreau [Mon, 16 Jan 2012 14:20:54 +0000 (09:20 -0500)]
channels/drdynvc/audin: fix typo in header

12 years agolibfreerdp-core: fix FreeBSD compilation
Marc-André Moreau [Mon, 16 Jan 2012 13:27:07 +0000 (08:27 -0500)]
libfreerdp-core: fix FreeBSD compilation

12 years agoMerge pull request #344 from atong/master
Marc-André Moreau [Mon, 16 Jan 2012 11:51:15 +0000 (03:51 -0800)]
Merge pull request #344 from atong/master

various glyph cache resource fixes

12 years agoglyph-cache: free pixmap, cache entries, cache fragments, and reuse secondary glyph...
Anthony Tong [Sun, 15 Jan 2012 20:35:08 +0000 (15:35 -0500)]
glyph-cache: free pixmap, cache entries, cache fragments, and reuse secondary glyph cache buffers

12 years agolibfreerdp-core: add integer overflow check in GCC
Marc-André Moreau [Sun, 15 Jan 2012 20:20:39 +0000 (15:20 -0500)]
libfreerdp-core: add integer overflow check in GCC

12 years agolibfreerdp-core: refactor header encoding fix
Marc-André Moreau [Sun, 15 Jan 2012 20:16:32 +0000 (15:16 -0500)]
libfreerdp-core: refactor header encoding fix

12 years agolibfreerdp-core: apply RDP signature verification patch from Pawel Jakub Dawidek
Marc-André Moreau [Sun, 15 Jan 2012 20:01:16 +0000 (15:01 -0500)]
libfreerdp-core: apply RDP signature verification patch from Pawel Jakub Dawidek

12 years agoMerge pull request #342 from dorianj/master
Marc-André Moreau [Sat, 14 Jan 2012 21:35:19 +0000 (13:35 -0800)]
Merge pull request #342 from dorianj/master

Better handling of --version and --help (don't print errors for these)

12 years agoChange freerdp_parse_args to return different values for error vs --help/--version...
Dorian Johnson [Sat, 14 Jan 2012 21:30:48 +0000 (15:30 -0600)]
Change freerdp_parse_args to return different values for error vs --help/--version, and change xfreerdp to only report real errors

12 years agolibfreerdp-core: pad larger portion of rdpSettings
Marc-André Moreau [Sat, 14 Jan 2012 19:42:36 +0000 (14:42 -0500)]
libfreerdp-core: pad larger portion of rdpSettings

12 years agolibfreerdp-core: added freerdp_get_version()
Marc-André Moreau [Sat, 14 Jan 2012 18:33:04 +0000 (13:33 -0500)]
libfreerdp-core: added freerdp_get_version()

12 years agocunit: fix test_read_fast_index_order()
Anthony Tong [Sat, 14 Jan 2012 16:43:40 +0000 (10:43 -0600)]
cunit: fix test_read_fast_index_order()

12 years agoMerge pull request #341 from sunds/master
Marc-André Moreau [Sat, 14 Jan 2012 00:11:37 +0000 (16:11 -0800)]
Merge pull request #341 from sunds/master

Fix drawing errors for remote app, issue #229

12 years agoResolve a race condition between a local move update to the RDP server, GDI orders...
David Sundstrom [Sat, 14 Jan 2012 00:07:27 +0000 (18:07 -0600)]
Resolve a race condition between a local move update to the RDP server, GDI orders, and RAIL orders.  Previously we could receive new GDI orders for the new window position before we received the RAIL order for the new position.  The caused drawing errors.
Also correct some errors in managing the GDI damage region.

12 years agolibfreerdp-core: cleanup warnings in mppc.c
Marc-André Moreau [Fri, 13 Jan 2012 23:39:09 +0000 (18:39 -0500)]
libfreerdp-core: cleanup warnings in mppc.c

12 years agoxfreerdp: fix win_title string handling from #247
Anthony Tong [Fri, 13 Jan 2012 22:32:14 +0000 (17:32 -0500)]
xfreerdp: fix win_title string handling from #247

12 years agocunit: fixed license tests
Marc-André Moreau [Fri, 13 Jan 2012 22:14:16 +0000 (17:14 -0500)]
cunit: fixed license tests

12 years agocunit: fix orders tests
Marc-André Moreau [Fri, 13 Jan 2012 22:11:34 +0000 (17:11 -0500)]
cunit: fix orders tests

12 years agocunit: fix polyline and fast index tests
Marc-André Moreau [Fri, 13 Jan 2012 21:38:34 +0000 (16:38 -0500)]
cunit: fix polyline and fast index tests

12 years agolibfreerdp-core: fix incorrect length in share control header, fix VRDP connectivity
Marc-André Moreau [Fri, 13 Jan 2012 21:20:36 +0000 (16:20 -0500)]
libfreerdp-core: fix incorrect length in share control header, fix VRDP connectivity

12 years agocunit: fix build broken by jiten19
Anthony Tong [Fri, 13 Jan 2012 14:38:39 +0000 (09:38 -0500)]
cunit: fix build broken by jiten19

12 years agoMerge pull request #340 from atong/master
Marc-André Moreau [Wed, 11 Jan 2012 18:29:12 +0000 (10:29 -0800)]
Merge pull request #340 from atong/master

libfreerdp-core: fix reuse issue with osb's deleteList

12 years agolibfreerdp-core: fix reuse issue with osb's deleteList
Anthony Tong [Wed, 11 Jan 2012 18:24:01 +0000 (13:24 -0500)]
libfreerdp-core: fix reuse issue with osb's deleteList

12 years agolibfreerdp-core: fix encoding of capability set headers
Marc-André Moreau [Wed, 11 Jan 2012 04:04:10 +0000 (23:04 -0500)]
libfreerdp-core: fix encoding of capability set headers

12 years agolibfreerdp-core: fix draw nine grid cache capability set encoding bug
Marc-André Moreau [Wed, 11 Jan 2012 02:32:08 +0000 (21:32 -0500)]
libfreerdp-core: fix draw nine grid cache capability set encoding bug

12 years agoMerge pull request #339 from dorianj/master
Marc-André Moreau [Tue, 10 Jan 2012 23:16:07 +0000 (15:16 -0800)]
Merge pull request #339 from dorianj/master

libfreerdp-utils: freerdp_load_plugin print dlerror() on failure

12 years agoMerge remote-tracking branch 'upstream/master'
Dorian Johnson [Tue, 10 Jan 2012 23:03:04 +0000 (17:03 -0600)]
Merge remote-tracking branch 'upstream/master'

12 years agolibfreerdp-utils: freerdp_load_plugin print dlerror() on failure
Dorian Johnson [Tue, 10 Jan 2012 23:02:39 +0000 (17:02 -0600)]
libfreerdp-utils: freerdp_load_plugin print dlerror() on failure

12 years agolibfreerdp-core: fix fastpath parsing of synchronize pdu
Marc-André Moreau [Tue, 10 Jan 2012 22:03:31 +0000 (17:03 -0500)]
libfreerdp-core: fix fastpath parsing of synchronize pdu

12 years agoMerge pull request #337 from jiten19/mainstream
Marc-André Moreau [Tue, 10 Jan 2012 15:21:24 +0000 (07:21 -0800)]
Merge pull request #337 from jiten19/mainstream

INFO_COMPR flags according to CompressionTypeMask

12 years ago..
cool [Tue, 10 Jan 2012 08:52:09 +0000 (21:52 -1100)]
..

12 years agoINFO_COMPR flags according to CompressionTypeMask
cool [Tue, 10 Jan 2012 03:38:07 +0000 (16:38 -1100)]
INFO_COMPR flags according to CompressionTypeMask

12 years agoMerge branch 'master' of github.com:FreeRDP/FreeRDP
Marc-André Moreau [Tue, 10 Jan 2012 03:08:39 +0000 (22:08 -0500)]
Merge branch 'master' of github.com:FreeRDP/FreeRDP

12 years agoxfreerdp-server: start work on XShm
Marc-André Moreau [Tue, 10 Jan 2012 03:08:25 +0000 (22:08 -0500)]
xfreerdp-server: start work on XShm

12 years agolibfreerdp-gdi: fix RGB<->BGR color conversion
Marc-André Moreau [Tue, 10 Jan 2012 00:47:52 +0000 (19:47 -0500)]
libfreerdp-gdi: fix RGB<->BGR color conversion

12 years agolibfreerdp-codec: add freerdp_convert_color_var()
Marc-André Moreau [Mon, 9 Jan 2012 23:45:36 +0000 (18:45 -0500)]
libfreerdp-codec: add freerdp_convert_color_var()

12 years agoMerge pull request #336 from sunds/master
Marc-André Moreau [Mon, 9 Jan 2012 23:11:30 +0000 (15:11 -0800)]
Merge pull request #336 from sunds/master

Inverted GDI when X server has BGR colormap

12 years agoMerge pull request #335 from louyihua/master
Marc-André Moreau [Mon, 9 Jan 2012 23:11:04 +0000 (15:11 -0800)]
Merge pull request #335 from louyihua/master

libfreerdp-codec & wfreerdp

12 years agoInvert colors went X server uses BGR colormap
David Sundstrom [Mon, 9 Jan 2012 22:08:57 +0000 (16:08 -0600)]
Invert colors went X server uses BGR colormap

12 years agoInvert rectangle colors when X server uses inverted colors
David Sundstrom [Mon, 9 Jan 2012 21:39:19 +0000 (15:39 -0600)]
Invert rectangle colors when X server uses inverted colors

12 years agowfreerdp: Fix the crash when 'HOME' env is not defined. Now use 'HOMEDRIVE' and ...
louyihua [Mon, 9 Jan 2012 21:19:28 +0000 (05:19 +0800)]
wfreerdp: Fix the crash when 'HOME' env is not defined. Now use 'HOMEDRIVE' and 'HOMEPATH' to combine it if it don't exist.

12 years agolibfreerdp-codec: RDVH may return more than one channels in TS_RFX_CHANNELS message.
louyihua [Mon, 9 Jan 2012 21:18:31 +0000 (05:18 +0800)]
libfreerdp-codec: RDVH may return more than one channels in TS_RFX_CHANNELS message.

12 years agoxfreerdp-server: added support for mouse wheel events
Marc-André Moreau [Mon, 9 Jan 2012 02:22:50 +0000 (21:22 -0500)]
xfreerdp-server: added support for mouse wheel events

12 years agoMerge branch 'master' of github.com:FreeRDP/FreeRDP
Marc-André Moreau [Mon, 9 Jan 2012 01:33:24 +0000 (20:33 -0500)]
Merge branch 'master' of github.com:FreeRDP/FreeRDP

12 years agoxfreerdp-server: add server-side keyboard mapping
Marc-André Moreau [Mon, 9 Jan 2012 01:32:50 +0000 (20:32 -0500)]
xfreerdp-server: add server-side keyboard mapping

12 years agoxfreerdp: fix glyph background color bug
Marc-André Moreau [Mon, 9 Jan 2012 00:08:13 +0000 (19:08 -0500)]
xfreerdp: fix glyph background color bug

12 years agolibfreerdp-gdi: fix minor color background bug with glyph drawing
Marc-André Moreau [Sun, 8 Jan 2012 23:19:04 +0000 (18:19 -0500)]
libfreerdp-gdi: fix minor color background bug with glyph drawing

12 years agolibfreerdp-gdi: fix 16bpp glyph drawing
Marc-André Moreau [Sun, 8 Jan 2012 22:43:07 +0000 (17:43 -0500)]
libfreerdp-gdi: fix 16bpp glyph drawing

12 years agolibfreerdp-core: fix parsing bugs with synchronize, font map and session logon info...
Marc-André Moreau [Sun, 8 Jan 2012 21:02:59 +0000 (16:02 -0500)]
libfreerdp-core: fix parsing bugs with synchronize, font map and session logon info PDUs

12 years agolibfreerdp-core: fix issue #281 for slow-path pointer PDUs
Marc-André Moreau [Sun, 8 Jan 2012 20:22:52 +0000 (15:22 -0500)]
libfreerdp-core: fix issue #281 for slow-path pointer PDUs

12 years agolibfreerdp-core: fix padding with pointer color update
Marc-André Moreau [Sun, 8 Jan 2012 20:02:02 +0000 (15:02 -0500)]
libfreerdp-core: fix padding with pointer color update

12 years agolibfreerdp-kbd: fix keymaps search
Marc-André Moreau [Sun, 8 Jan 2012 17:42:30 +0000 (12:42 -0500)]
libfreerdp-kbd: fix keymaps search

12 years agoxfreerdp-server: basic mouse input
Marc-André Moreau [Sun, 8 Jan 2012 02:57:42 +0000 (21:57 -0500)]
xfreerdp-server: basic mouse input

12 years agoxfreerdp-server: improved RemoteFX encoding
Marc-André Moreau [Sun, 8 Jan 2012 02:36:12 +0000 (21:36 -0500)]
xfreerdp-server: improved RemoteFX encoding

12 years agolibfreerdp-core: remove unused crypto_cert_verify function to avoid confusion
Marc-André Moreau [Sat, 7 Jan 2012 01:51:20 +0000 (20:51 -0500)]
libfreerdp-core: remove unused crypto_cert_verify function to avoid confusion

12 years agolibfreerdp-core: apply glyph cache v2 patch from Pawel Jakub Dawidek 1.0-beta5
Marc-André Moreau [Thu, 5 Jan 2012 01:20:58 +0000 (20:20 -0500)]
libfreerdp-core: apply glyph cache v2 patch from Pawel Jakub Dawidek

12 years agolibfreerdp-cache: apply bitmap cache v1 patch from Pawel Jakub Dawidek
Marc-André Moreau [Thu, 5 Jan 2012 01:17:11 +0000 (20:17 -0500)]
libfreerdp-cache: apply bitmap cache v1 patch from Pawel Jakub Dawidek

12 years agolibfreerdp-core: add support for raw planes in RDP6 bitmap decompression
Marc-André Moreau [Thu, 5 Jan 2012 00:55:31 +0000 (19:55 -0500)]
libfreerdp-core: add support for raw planes in RDP6 bitmap decompression

12 years agolibfreerdp-core: clarification of bitmap decompression
Marc-André Moreau [Tue, 3 Jan 2012 23:22:42 +0000 (18:22 -0500)]
libfreerdp-core: clarification of bitmap decompression

12 years agoMerge branch 'master' of github.com:FreeRDP/FreeRDP
Marc-André Moreau [Tue, 3 Jan 2012 07:09:26 +0000 (02:09 -0500)]
Merge branch 'master' of github.com:FreeRDP/FreeRDP

12 years agolibfreerdp-cache: workaround for windows 8 missing bitmap bpp
Marc-André Moreau [Tue, 3 Jan 2012 07:09:14 +0000 (02:09 -0500)]
libfreerdp-cache: workaround for windows 8 missing bitmap bpp

12 years agoxfreerdp-server: send updated regions using xdamage
Marc-André Moreau [Tue, 3 Jan 2012 06:56:08 +0000 (01:56 -0500)]
xfreerdp-server: send updated regions using xdamage

12 years agoxfreerdp-server: add missing FindXfixes.cmake
Marc-André Moreau [Tue, 3 Jan 2012 04:13:54 +0000 (23:13 -0500)]
xfreerdp-server: add missing FindXfixes.cmake

12 years agoxfreerdp-server: xdamage initialization
Marc-André Moreau [Tue, 3 Jan 2012 03:33:35 +0000 (22:33 -0500)]
xfreerdp-server: xdamage initialization