fix use of EXEEXT in tiff checks. Fixes bug #133763.

2004-02-07  Manish Singh  <yosh@gimp.org>

        * configure.in: fix use of EXEEXT in tiff checks. Fixes bug #133763.
This commit is contained in:
Manish Singh 2004-02-07 23:51:26 +00:00 committed by Manish Singh
parent 5cbb416a91
commit d7658b0610
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-02-07 Manish Singh <yosh@gimp.org>
* configure.in: fix use of EXEEXT in tiff checks. Fixes bug #133763.
2004-02-07 Hans Breuer <hans@breuer.org>
* gimpdefs.msc : new file to keep common definitions for the msc build

View File

@ -846,11 +846,11 @@ AC_ARG_WITH(libtiff, [ --without-libtiff build without TIFF support])
[AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF header files not found) ***)])],
[AC_CHECK_LIB(tiff, TIFFWriteScanline,
[AC_CHECK_HEADER(tiffio.h,
TIFF='tiff(EXEEXT)'; LIBTIFF='-ltiff -ljpeg -lz',
TIFF='tiff$(EXEEXT)'; LIBTIFF='-ltiff -ljpeg -lz',
[AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF header files not found) ***)])],
[AC_CHECK_LIB(tiff34, TIFFFlushData,
[AC_CHECK_HEADER(tiffio.h,
TIFF='tiff(EXEEXT)'; LIBTIFF='-ltiff34 -ljpeg -lz',
TIFF='tiff$(EXEEXT)'; LIBTIFF='-ltiff34 -ljpeg -lz',
[AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF header files not found) ***)])],
[AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF library not found) ***)], -ljpeg -lz -lm)], -ljpeg -lz -lm)], -lm)
fi