mirror of https://github.com/GNOME/gimp.git
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:
parent
5cbb416a91
commit
d7658b0610
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue