diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/imageutils/jpegcontent.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/imageutils/jpegcontent.cpp b/src/imageutils/jpegcontent.cpp index bab3b9a..02125c4 100644 --- a/src/imageutils/jpegcontent.cpp +++ b/src/imageutils/jpegcontent.cpp @@ -18,6 +18,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#if defined(HAVE_CONFIG_H) +#include "config.h" +#endif + // System #include <math.h> #include <stdio.h> @@ -39,8 +43,12 @@ extern "C" { #include <kdebug.h> // Exiv2 +#if defined(HAVE_EXIV2_EXIV2_HPP) +#include <exiv2/exiv2.hpp> +#else #include <exiv2/exif.hpp> #include <exiv2/image.hpp> +#endif // Local #include "imageutils/imageutils.h" |