diff options
author | infirit <[email protected]> | 2015-08-05 09:05:53 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-08-05 09:05:53 +0200 |
commit | 317374f576896ef9a394cf4ec7c59a46c8c11693 (patch) | |
tree | c2fd0e47d4855873756f4126a910667f4d030778 | |
parent | 3d36b79bcc9738dda9014829522d97c345e864d7 (diff) | |
download | eom-317374f576896ef9a394cf4ec7c59a46c8c11693.tar.bz2 eom-317374f576896ef9a394cf4ec7c59a46c8c11693.tar.xz |
Remove AC_CHECK_HEADER for libexif
If pkg-config succeeds headers should be available, fixes #95
-rw-r--r-- | configure.ac | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index cc5b0b5..60089de 100644 --- a/configure.ac +++ b/configure.ac @@ -164,9 +164,6 @@ AC_ARG_WITH([libexif], AC_HELP_STRING([--without-libexif], [disable EXIF support have_exif=no if test x$with_libexif != xno; then PKG_CHECK_MODULES(EXIF, libexif >= $LIBEXIF_REQUIRED, have_exif=yes, have_exif=no) - if test "x$have_exif" = "xyes"; then - AC_CHECK_HEADER([libexif/exif-data.h],[],[have_exif=no]) - fi fi if test "x$have_exif" = "xyes"; then AC_DEFINE(HAVE_EXIF, 1, [EXIF Support.]) |