diff options
author | Joel Martin <github@martintribe.org> | 2011-07-19 13:40:34 +0200 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2011-07-22 17:56:26 +0200 |
commit | 896ca2036c35b89a7f63e1adefe5e3724bf4d40d (patch) | |
tree | d59dd0310911a14e65f55378897f146a0b1c2184 /libvncserver/Makefile.am | |
parent | 17ce0c56281f55316685f194b34e5f99f4024a5f (diff) | |
download | libtdevnc-896ca2036c35b89a7f63e1adefe5e3724bf4d40d.tar.gz libtdevnc-896ca2036c35b89a7f63e1adefe5e3724bf4d40d.zip |
tightPng: Add initial tightPng encoding support.
http://wiki.qemu.org/VNC_Tight_PNG
Signed-off-by: Joel Martin <github@martintribe.org>
Signed-off-by: Christian Beier <dontmind@freeshell.org>
Diffstat (limited to 'libvncserver/Makefile.am')
-rw-r--r-- | libvncserver/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libvncserver/Makefile.am b/libvncserver/Makefile.am index 538617f..a685ed1 100644 --- a/libvncserver/Makefile.am +++ b/libvncserver/Makefile.am @@ -29,7 +29,11 @@ EXTRA_DIST=tableinit24.c tableinittctemplate.c tabletranstemplate.c \ if HAVE_LIBZ ZLIBSRCS = zlib.c zrle.c zrleoutstream.c zrlepalettehelper.c ../common/zywrletemplate.c if HAVE_LIBJPEG -JPEGSRCS = tight.c +TIGHTSRCS = tight.c +else +if HAVE_LIBPNG +TIGHTSRCS = tight.c +endif endif endif @@ -37,7 +41,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 ../common/d3des.c ../common/vncauth.c cargs.c ../common/minilzo.c ultra.c scale.c \ - $(ZLIBSRCS) $(JPEGSRCS) $(TIGHTVNCFILETRANSFERSRCS) + $(ZLIBSRCS) $(TIGHTSRCS) $(TIGHTVNCFILETRANSFERSRCS) libvncserver_la_SOURCES=$(LIB_SRCS) |