diff options
author | Jan Holesovsky <kendy@suse.cz> | 2013-01-04 22:02:34 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2013-01-04 22:02:53 +0100 |
commit | 540f090a68ae4375a36d0ee6dfbb4a82f28ac704 (patch) | |
tree | 355da6c17d95ecccbf3a568383af448c74d7d15e | |
parent | 4a11267d8140143dce0bdb51791f5e703187a7e9 (diff) |
Fix build on linux.
Change-Id: I5753a822e9f18d1afa831ece6134e030f88ad47f
-rw-r--r-- | vcl/source/filter/jpeg/jpeg.cxx | 4 | ||||
-rw-r--r-- | vcl/source/filter/jpeg/jpegc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/filter/jpeg/jpeg.cxx b/vcl/source/filter/jpeg/jpeg.cxx index 3c0fe9c429dc..72c6e5746248 100644 --- a/vcl/source/filter/jpeg/jpeg.cxx +++ b/vcl/source/filter/jpeg/jpeg.cxx @@ -24,8 +24,8 @@ extern "C" { #include "stdio.h" #include "jpeg.h" - #include <jpeg/jpeglib.h> - #include <jpeg/jerror.h> + #include <jpeglib.h> + #include <jerror.h> } #define _JPEGPRIVATE diff --git a/vcl/source/filter/jpeg/jpegc.c b/vcl/source/filter/jpeg/jpegc.c index f9bcc07ca3df..e70aa53224fc 100644 --- a/vcl/source/filter/jpeg/jpegc.c +++ b/vcl/source/filter/jpeg/jpegc.c @@ -20,8 +20,8 @@ #include <stdio.h> #include <stdlib.h> #include "setjmp.h" -#include "jpeg/jpeglib.h" -#include "jpeg/jerror.h" +#include <jpeglib.h> +#include <jerror.h> #include "jpeg.h" #include "rtl/alloc.h" #include "osl/diagnose.h" |