diff options
author | gkiagia <gkiagia@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-11-14 10:30:36 +0000 |
---|---|---|
committer | gkiagia <gkiagia@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-11-14 10:30:36 +0000 |
commit | 22946807bea930004684ffd6bf7bc48171988391 (patch) | |
tree | dc59146f3105951f60583f9d12534a54280f5789 | |
parent | e0f089c9ccae37a816970f967e2892f28e305f14 (diff) | |
download | libvncserver-22946807bea930004684ffd6bf7bc48171988391.zip libvncserver-22946807bea930004684ffd6bf7bc48171988391.tar.gz |
Include the local rfb headers to avoid build errors in case libvncserver is also installed in the system location.
BUG: 256642
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/KDE/kdenetwork/krfb/libvncserver@1196901 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rwxr-xr-x | auth.c | 2 | ||||
-rw-r--r-- | cargs.c | 2 | ||||
-rwxr-xr-x | corre.c | 2 | ||||
-rw-r--r-- | cursor.c | 4 | ||||
-rwxr-xr-x | cutpaste.c | 2 | ||||
-rwxr-xr-x | draw.c | 2 | ||||
-rwxr-xr-x | font.c | 2 | ||||
-rwxr-xr-x | hextile.c | 2 | ||||
-rwxr-xr-x | httpd.c | 2 | ||||
-rw-r--r-- | main.c | 4 | ||||
-rw-r--r-- | rfb/rfb.h | 2 | ||||
-rw-r--r-- | rfb/rfbclient.h | 4 | ||||
-rwxr-xr-x | rfbregion.c | 4 | ||||
-rw-r--r-- | rfbserver.c | 4 | ||||
-rwxr-xr-x | rre.c | 2 | ||||
-rw-r--r-- | scale.c | 4 | ||||
-rwxr-xr-x | selbox.c | 4 | ||||
-rwxr-xr-x | sockets.c | 2 | ||||
-rwxr-xr-x | stats.c | 2 | ||||
-rw-r--r-- | tight.c | 2 | ||||
-rwxr-xr-x | translate.c | 4 | ||||
-rw-r--r-- | ultra.c | 2 | ||||
-rw-r--r-- | vncauth.c | 2 | ||||
-rw-r--r-- | zlib.c | 2 |
24 files changed, 32 insertions, 32 deletions
@@ -27,7 +27,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" /* RFB 3.8 clients are well informed */ void rfbClientSendString(rfbClientPtr cl, const char *reason); @@ -12,7 +12,7 @@ * see GPL (latest version) for full details */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" extern int rfbStringToAddr(char *str, in_addr_t *iface); @@ -27,7 +27,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" /* * rreBeforeBuf contains pixel data in the client's format. @@ -22,8 +22,8 @@ * USA. */ -#include <rfb/rfb.h> -#include <rfb/rfbregion.h> +#include "rfb/rfb.h" +#include "rfb/rfbregion.h" #include "private.h" void rfbScaledScreenUpdate(rfbScreenInfoPtr screen, int x1, int y1, int x2, int y2); @@ -23,7 +23,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" /* @@ -1,4 +1,4 @@ -#include <rfb/rfb.h> +#include "rfb/rfb.h" void rfbFillRect(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col) { @@ -1,4 +1,4 @@ -#include <rfb/rfb.h> +#include "rfb/rfb.h" int rfbDrawChar(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font, int x,int y,unsigned char c,rfbPixel col) @@ -25,7 +25,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" static rfbBool sendHextiles8(rfbClientPtr cl, int x, int y, int w, int h); static rfbBool sendHextiles16(rfbClientPtr cl, int x, int y, int w, int h); @@ -22,7 +22,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" #include <ctype.h> #ifdef LIBVNCSERVER_HAVE_UNISTD_H @@ -13,8 +13,8 @@ #ifdef __STRICT_ANSI__ #define _BSD_SOURCE #endif -#include <rfb/rfb.h> -#include <rfb/rfbregion.h> +#include "rfb/rfb.h" +#include "rfb/rfbregion.h" #include "private.h" #include <stdarg.h> @@ -37,7 +37,7 @@ extern "C" #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <rfb/rfbproto.h> +#include "rfbproto.h" #ifdef LIBVNCSERVER_HAVE_SYS_TYPES_H #include <sys/types.h> diff --git a/rfb/rfbclient.h b/rfb/rfbclient.h index 56806cf..ecebc57 100644 --- a/rfb/rfbclient.h +++ b/rfb/rfbclient.h @@ -31,8 +31,8 @@ #include <string.h> #include <sys/time.h> #include <unistd.h> -#include <rfb/rfbproto.h> -#include <rfb/keysym.h> +#include "rfbproto.h" +#include "keysym.h" #define rfbClientSwap16IfLE(s) \ (*(char *)&client->endianTest ? ((((s) & 0xff) << 8) | (((s) >> 8) & 0xff)) : (s)) diff --git a/rfbregion.c b/rfbregion.c index 0ab8a12..5854336 100755 --- a/rfbregion.c +++ b/rfbregion.c @@ -5,8 +5,8 @@ * Only deals with rectangular regions, though. */ -#include <rfb/rfb.h> -#include <rfb/rfbregion.h> +#include "rfb/rfb.h" +#include "rfb/rfbregion.h" /* -=- Internal Span structure */ diff --git a/rfbserver.c b/rfbserver.c index 8a367bf..1614bb3 100644 --- a/rfbserver.c +++ b/rfbserver.c @@ -29,8 +29,8 @@ #define _BSD_SOURCE #endif #include <string.h> -#include <rfb/rfb.h> -#include <rfb/rfbregion.h> +#include "rfb/rfb.h" +#include "rfb/rfbregion.h" #include "private.h" #ifdef LIBVNCSERVER_HAVE_FCNTL_H @@ -26,7 +26,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" /* * rreBeforeBuf contains pixel data in the client's format. @@ -29,8 +29,8 @@ #define _BSD_SOURCE #endif #include <string.h> -#include <rfb/rfb.h> -#include <rfb/rfbregion.h> +#include "rfb/rfb.h" +#include "rfb/rfbregion.h" #include "private.h" #ifdef LIBVNCSERVER_HAVE_FCNTL_H @@ -1,6 +1,6 @@ #include <ctype.h> -#include <rfb/rfb.h> -#include <rfb/keysym.h> +#include "rfb/rfb.h" +#include "rfb/keysym.h" typedef struct { rfbScreenInfoPtr screen; @@ -40,7 +40,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" #ifdef LIBVNCSERVER_HAVE_SYS_TYPES_H #include <sys/types.h> @@ -24,7 +24,7 @@ * USA. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" char *messageNameServer2Client(uint32_t type, char *buf, int len); char *messageNameClient2Server(uint32_t type, char *buf, int len); @@ -25,7 +25,7 @@ */ /*#include <stdio.h>*/ -#include <rfb/rfb.h> +#include "rfb/rfb.h" #include "private.h" #ifdef WIN32 diff --git a/translate.c b/translate.c index 500d47d..182cf65 100755 --- a/translate.c +++ b/translate.c @@ -23,8 +23,8 @@ * USA. */ -#include <rfb/rfb.h> -#include <rfb/rfbregion.h> +#include "rfb/rfb.h" +#include "rfb/rfbregion.h" static void PrintPixelFormat(rfbPixelFormat *pf); static rfbBool rfbSetClientColourMapBGR233(rfbClientPtr cl); @@ -7,7 +7,7 @@ * This is 'UltraZip' and is currently not implemented. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" #include "minilzo.h" /* @@ -31,7 +31,7 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> -#include <rfb/rfbproto.h> +#include "rfb/rfbproto.h" #include "d3des.h" #include <string.h> @@ -30,7 +30,7 @@ * or send email to feedback@developvnc.org. */ -#include <rfb/rfb.h> +#include "rfb/rfb.h" /* * zlibBeforeBuf contains pixel data in the client's format. |