evas_generic_loader: update autotools (from vtorri)

SVN revision: 59839
This commit is contained in:
Michael BOUCHAUD 2011-05-31 10:22:07 +00:00
parent 583770d42e
commit 49431d4f13
2 changed files with 7 additions and 4 deletions

View File

@ -68,10 +68,12 @@ PKG_CHECK_MODULES([LIBRAW], [libraw], [have_raw="yes"], [have_raw="no"])
AM_CONDITIONAL([HAVE_PDF], [test "x${have_poppler}" = "xyes"])
AM_CONDITIONAL([HAVE_PS], [test "x${have_ps}" = "xyes"])
AM_CONDITIONAL(HAVE_RAW, test "x${have_raw}" = "xyes")
AM_CONDITIONAL(HAVE_RAW, [test "x${have_raw}" = "xyes"])
### Checks for header files
AC_CHECK_HEADERS(netinet/in.h unistd.h)
AC_CHECK_HEADER([zlib.h],
[dummy="yes"],
[AC_MSG_ERROR("Cannot find zlib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file")])

View File

@ -7,10 +7,11 @@ if HAVE_PDF
SUBDIRS += pdf
endif
if HAVE_PS
SUBDIRS += ps
endif
if HAVE_RAW
SUBDIRS += raw
endif
if HAVE_PS
SUBDIRS += ps
endif