0

我已经正确配置并制作了 libtiff。现在我正在尝试构建另一个依赖于 tiff 库的库。我收到以下错误

checking for TIFF support ...
checking tiff.h usability... yes
checking tiff.h presence... yes
checking for tiff.h... yes
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for TIFFOpen in -ltiff... no
checking for TIFFClientOpen in -ltiff... no
checking for TIFFIsByteSwapped in -ltiff... no
checking if TIFF package is complete... no -- some components failed test

我不明白我做错了什么。我的配置语句如下:

./configure --prefix=/usr/local --enable-static=yes --enable-shared=no --with-zlib=yes --with-jpeg=yes --with-tiff=yes --with-sysroot=/usr/local/lib
4

1 回答 1

0

它是固定的。我忘了包括另一个依赖库。libtiff 是在 jbig 支持下构建的。在配置依赖于 libtiff 的新库时,我忘记在 LDFLAGS 中包含 jbig。

于 2012-09-09T19:31:19.470 回答