내 환경은mint17 3.13.0-24-generic x86_64
xpdf
소스에서 컴파일 하려고 합니다 .
sudo apt-get install libfreetype6-dev libmotif-dev
wget ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.04.tar.gz
tar xvf xpdf-3.04.tar.gz
cd xpdf-3.04
./configure \
--with-freetype2-library=/usr/lib/x86_64-linux-gnu \
--with-freetype2-includes=/usr/include/freetype2 \
--with-Xm-library=/usr/lib/x86_64-linux-gnu \
--with-Xm-includes=/usr/include/Xm
그런 다음 경고 메시지가 나타납니다.
configure: WARNING: Couldn't find X
configure: WARNING: Couldn't find Motif
configure: WARNING: -- You will be able to compile pdftops, pdftotext, pdfinfo, pdffonts, pdfdetach, and pdfimages, but not xpdf or pdftoppm
라이브러리와 헤더 파일의 위치를 확인했습니다. 올바른 위치의 최신 버전이 여전히 이 문제를 일으키는 이유를 모르겠습니다.
library: /usr/lib/x86_64-linux-gnu/libXm.so
header files: /usr/include/Xm
또한 검색해 보니 다른 플랫폼에서 동일한 해결되지 않은 경고 메시지를 받는 사람은 거의 없습니다.
xpdf
* 소스에서 컴파일 해야 합니다 .
답변1
또한 필요 하지 않은 인수 (Motif 헤더에 지정된 포함 디렉터리의 하위 디렉터리에 있는 모든 조회 파일이 포함되어 있기 때문에 실제로 실패함 ) 또는 제거할 수 있는 libxt-dev
. 인수 도 설치해야 합니다 (기본값).--with-Xm-...
./configure
--with-Xm-includes=/usr/include/Xm
Xm
--with-freetype2-library=/usr/lib/x86_64-linux-gnu
sudo apt-get install libfreetype6-dev libmotif-dev libxt-dev
wget ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.04.tar.gz
tar xvf xpdf-3.04.tar.gz
cd xpdf-3.04
./configure --with-freetype2-includes=/usr/include/freetype2
make