diff options
author | Adam Tkac <atkac@redhat.com> | 2008-10-22 14:47:09 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-10-22 14:47:09 +0000 |
commit | a0d5fe3790af8c284be9ddc0ca369ecf21c67195 (patch) | |
tree | 958bee2a153c5c51bc97d1e40153b46c84cbf149 /common/rfb/JpegCompressor.h | |
parent | 65b24feda1556dea7a4a7a92a162d5c6b0de13ce (diff) | |
download | tigervnc-a0d5fe3790af8c284be9ddc0ca369ecf21c67195.tar.gz tigervnc-a0d5fe3790af8c284be9ddc0ca369ecf21c67195.zip |
[Bugfix] Handle conditional jpeg/zlib building through AM_CONDITIONAL to make
make dist working
[Bugfix] #include <jpeglib.h> (not jpeg/jpeglib.h) in JpegCompressor.h
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3043 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/JpegCompressor.h')
-rw-r--r-- | common/rfb/JpegCompressor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/JpegCompressor.h b/common/rfb/JpegCompressor.h index 93fdc7bf..93f6decf 100644 --- a/common/rfb/JpegCompressor.h +++ b/common/rfb/JpegCompressor.h @@ -4,7 +4,7 @@ #include <stdio.h> #include <sys/types.h> extern "C" { -#include <jpeg/jpeglib.h> +#include <jpeglib.h> } #include <rdr/types.h> |