从源代码编译正在构建错误的版本

从源代码编译正在构建错误的版本

我现在有点困惑,但我正在尝试在 Ubuntu 14.04 上编译 libtiff-tools 版本 4.0.6,但它不断编译和安装存储库中可用的相同版本(4.0.3,而不是 4.0.6) )。我从以下位置下载了 4.0.6 版本的源代码https://launchpad.net/ubuntu/+source/tiff/4.0.6-1

在没有安装 libtiff-tools 的系统上,我下载源代码,然后解压:

# ./configure
[bunch of messages]
Libtiff is now configured for x86_64-unknown-linux-gnu

Installation directory:             /usr/local
Documentation directory:            ${prefix}/share/doc/tiff-4.0.6
C compiler:                         gcc -g -O2 -Wall -W
C++ compiler:                       g++ -g -O2
Enable runtime linker paths:        no
Enable linker symbol versioning:    no
Support Microsoft Document Imaging: yes
Use win32 IO:                       no

Support for internal codecs:
CCITT Group 3 & 4 algorithms:       yes
Macintosh PackBits algorithm:       yes
LZW algorithm:                      yes
ThunderScan 4-bit RLE algorithm:    yes
NeXT 2-bit RLE algorithm:           yes
LogLuv high dynamic range encoding: yes

Support for external codecs:
ZLIB support:                       no
Pixar log-format algorithm:         no
JPEG support:                       no
Old JPEG support:                   no
JPEG 8/12 bit dual mode:            no
ISO JBIG support:                   no
LZMA2 support:                      no

C++ support:                        yes

OpenGL support:                     no

好的,缺少对某些内容的支持,但继续:

make
[more messages]

make install
[more messages]

然后当我调用时:

/usr/local/bin/tiff2pdf

我得到:

LIBTIFF, Version 4.0.3
Copyright (c) 1988-1996 Sam Leffler
Copyright (c) 1991-1996 Silicon Graphics, Inc.

是什么赋予了?

相关内容