diff options
author | dscho <dscho> | 2005-09-28 16:51:50 +0000 |
---|---|---|
committer | dscho <dscho> | 2005-09-28 16:51:50 +0000 |
commit | 0a909fde7a283fb22c22bbdbc16bcf4c0fe391ec (patch) | |
tree | 9de5c473941fc3c2525a7cbc67fc416cee11efc0 /libvncserver/Makefile.am | |
parent | 93be927b1c1c74bc4da6f6d5978ba8e6e52f3cc2 (diff) | |
download | libtdevnc-0a909fde7a283fb22c22bbdbc16bcf4c0fe391ec.tar.gz libtdevnc-0a909fde7a283fb22c22bbdbc16bcf4c0fe391ec.zip |
This monster commit contains support for TightVNC's file transfer protocol.
Thank you very much, Rohit!
Diffstat (limited to 'libvncserver/Makefile.am')
-rw-r--r-- | libvncserver/Makefile.am | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/libvncserver/Makefile.am b/libvncserver/Makefile.am index 13bcb84..ecffba1 100644 --- a/libvncserver/Makefile.am +++ b/libvncserver/Makefile.am @@ -1,4 +1,16 @@ -DEFINES=-g -Wall +AM_CFLAGS=-g -Wall + +#if WITH_TIGHTVNC_FILETRANSFER +TIGHTVNCFILETRANSFERHDRS=tightvnc-filetransfer/filelistinfo.h \ + tightvnc-filetransfer/filetransfermsg.h \ + tightvnc-filetransfer/handlefiletransferrequest.h \ + tightvnc-filetransfer/rfbtightproto.h + +TIGHTVNCFILETRANSFERSRCS = tightvnc-filetransfer/rfbtightserver.c \ + tightvnc-filetransfer/handlefiletransferrequest.c \ + tightvnc-filetransfer/filetransfermsg.c \ + tightvnc-filetransfer/filelistinfo.c +#endif includedir=$(prefix)/include/rfb #include_HEADERS=rfb.h rfbconfig.h rfbint.h rfbproto.h keysym.h rfbregion.h @@ -7,7 +19,8 @@ include_HEADERS=../rfb/rfb.h ../rfb/rfbconfig.h ../rfb/rfbint.h \ ../rfb/rfbproto.h ../rfb/keysym.h ../rfb/rfbregion.h ../rfb/rfbclient.h noinst_HEADERS=d3des.h ../rfb/default8x16.h zrleoutstream.h \ - zrlepalettehelper.h zrletypes.h private.h + zrlepalettehelper.h zrletypes.h private.h \ + $(TIGHTVNCFILETRANSFERHDRS) EXTRA_DIST=tableinit24.c tableinittctemplate.c tabletranstemplate.c \ tableinitcmtemplate.c tabletrans24template.c \ @@ -24,7 +37,7 @@ LIB_SRCS = main.c rfbserver.c rfbregion.c auth.c sockets.c \ stats.c corre.c hextile.c rre.c translate.c cutpaste.c \ httpd.c cursor.c font.c \ draw.c selbox.c d3des.c vncauth.c cargs.c \ - $(ZLIBSRCS) $(JPEGSRCS) + $(ZLIBSRCS) $(JPEGSRCS) $(TIGHTVNCFILETRANSFERSRCS) libvncserver_a_SOURCES=$(LIB_SRCS) |