diff options
author | dscho <dscho> | 2003-02-20 13:23:07 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-02-20 13:23:07 +0000 |
commit | 98b9663e29ebc5a23db392335aef707cf2464487 (patch) | |
tree | aebce1f2844d38988f672d2e5679a147719c37cb /contrib | |
parent | cbf75f79c82c53035d3d8fbf363079d8bc0700a5 (diff) | |
download | libtdevnc-98b9663e29ebc5a23db392335aef707cf2464487.tar.gz libtdevnc-98b9663e29ebc5a23db392335aef707cf2464487.zip |
the correct way to include rfb.h is now "#include <rfb/rfb.h>"
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/Makefile.am | 1 | ||||
-rw-r--r-- | contrib/x11vnc.c | 2 | ||||
-rw-r--r-- | contrib/zippy.c | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/contrib/Makefile.am b/contrib/Makefile.am index dd40cf4..8d00a9a 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -1,3 +1,4 @@ +CFLAGS = -I .. LDADD = ../libvncserver.a noinst_PROGRAMS=zippy diff --git a/contrib/x11vnc.c b/contrib/x11vnc.c index e7c6fd2..3967b9a 100644 --- a/contrib/x11vnc.c +++ b/contrib/x11vnc.c @@ -74,7 +74,7 @@ typedef KeySym X_KeySym; /* the KeySym typedef cannot be removed, so use an alias for rest of file: */ #define KeySym RFBKeySym -#include "rfb.h" +#include <rfb/rfb.h> Display *dpy = 0; int scr; diff --git a/contrib/zippy.c b/contrib/zippy.c index 97c139c..79179a1 100644 --- a/contrib/zippy.c +++ b/contrib/zippy.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <stdlib.h> -#include <rfb.h> -#include <keysym.h> +#include <rfb/rfb.h> +#include <rfb/keysym.h> #include "default8x16.h" int maxx=400, maxy=400, bpp=4; |