Fix another vpx->tiff cut&paste error

master
Ondřej Surý 2013-04-14 11:00:57 +02:00
parent 25a688908c
commit 859a6173e8
1 changed files with 4 additions and 4 deletions

View File

@ -310,9 +310,9 @@ else
fi
dnl check for libvpx by default
dnl check for libtiff by default
AC_ARG_WITH(tiff,dnl
[ --with-tiff=DIR where to find the tiff library],
[ --with-tiff=DIR where to find the TIFF library],
[if test -d "$withval"; then
LDFLAGS="$LDFLAGS -L$withval/lib"
CFLAGS="$CFLAGS -I$withval/include"
@ -322,8 +322,8 @@ AC_ARG_WITH(tiff,dnl
if test "$withval" != no; then
AC_CHECK_LIB(tiff,TIFFClientOpen,
[LIBS="-ltiff $LIBS"
FEATURES="GD_VPX $FEATURES"
AC_DEFINE(HAVE_LIBTIFF, 1, [ Define if you have the vpx library. ])])
FEATURES="GD_TIFF $FEATURES"
AC_DEFINE(HAVE_LIBTIFF, 1, [ Define if you have the TIFF library. ])])
else
ac_cv_lib_tiff_TIFFClientOpen=no
fi