1
0
mirror of https://invent.kde.org/network/krfb synced 2024-07-08 12:05:49 +00:00

Include the local rfb headers to avoid build errors in case libvncserver is also installed in the system location.

BUG: 256642

svn path=/trunk/KDE/kdenetwork/krfb/; revision=1196901
This commit is contained in:
George Kiagiadakis 2010-11-14 10:30:36 +00:00
parent 14525564ac
commit eee9c34020
24 changed files with 32 additions and 32 deletions

View File

@ -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);

View File

@ -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);

View File

@ -27,7 +27,7 @@
* USA.
*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
/*
* rreBeforeBuf contains pixel data in the client's format.

View File

@ -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);

View File

@ -23,7 +23,7 @@
* USA.
*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
/*

View File

@ -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)
{

View File

@ -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)

View File

@ -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);

View File

@ -22,7 +22,7 @@
* USA.
*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
#include <ctype.h>
#ifdef LIBVNCSERVER_HAVE_UNISTD_H

View File

@ -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>

View File

@ -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>

View File

@ -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))

View File

@ -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 */

View File

@ -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

View File

@ -26,7 +26,7 @@
* USA.
*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
/*
* rreBeforeBuf contains pixel data in the client's format.

View File

@ -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

View File

@ -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;

View File

@ -40,7 +40,7 @@
* USA.
*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
#ifdef LIBVNCSERVER_HAVE_SYS_TYPES_H
#include <sys/types.h>

View File

@ -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);

View File

@ -25,7 +25,7 @@
*/
/*#include <stdio.h>*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
#include "private.h"
#ifdef WIN32

View File

@ -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);

View File

@ -7,7 +7,7 @@
* This is 'UltraZip' and is currently not implemented.
*/
#include <rfb/rfb.h>
#include "rfb/rfb.h"
#include "minilzo.h"
/*

View File

@ -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>

View File

@ -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.