Dia를 설치하려 할 때 발생한 에러이다. (Dia는 순서도를 그릴 수 있는 linux용 소프트웨어이다)
$./configure
...
configure: error: XML::Parser perl module is required for intltool
자 당황하지 말고 ... libxml-parser-perl 패키지 안에 perl module for parsing MXL files 이 담겨 있기 때문에 설치 해주면 된다.
$sudo apt-get install libxml-parser-perl
다시 한번
$./configure
...
No package 'libxml-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables GTK_CFLAGS
and GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
자 이번엔 뭐라고 하는 거냐... libxml-2.0에 약간의 문제가 있는 듯 하다..
그러면? 다시 설치 해주면 될 듯 하다...
$sudo apt-get install libxml2-dev
자 설치가 끝났으면 이제 아래 명령어를 순차대로 입력하자
$make
$make install
'Eureka > Linux' 카테고리의 다른 글
[Solution] Linux Chrom Site 한글깨짐 현상 (0) | 2013.06.28 |
---|---|
[Tip] How to open Chm file in Linux (2) | 2013.06.26 |
[Tip] mms Streaming Video Download (0) | 2013.06.25 |
[Solution] qBittorrent Configure Error (2) | 2013.06.25 |
[Tip] Linux Mint 에서 Print Screen 키 활성화 (0) | 2013.06.20 |
[Not Solution] Do you want to restart Cinnamon? (0) | 2013.06.07 |
[Tip] 불필요한 Package 제거 (0) | 2013.06.04 |
[Solution] sudo: add-apt-repository: command not found (1) | 2013.05.28 |