the ./configure script is telling you that it requires XML::Parser perl module. Perl models can be confusing to install the first time ,but You will need to learn how to install perl modules sooner or later. There is couple ways to install perl modules:
1- thourgh CPAN website. click on
http://search.cpan.org/~msergeant/XM...2.34/Parser.pm
unpack the then cd into the directory and issue the following command:
Code:
perl Makefile.PL
make && make check
make install
2- by using CPAN shell. To access CPAN shell, issue the following command:
Code:
perl -MCPAN -e shell
this command will ask you some questions to prepeare the shell which downloads perl modules directly fro CPAN's website and installs then for you. The most important question, is what mirrors you want CPAN shell to pull installation sources from. The command above should show you somethings like this at some point:
Code:
(1) Africa
(2) Asia
(3) Central America
(4) Europe
(5) North America
(6) Oceania
(7) South America
Select your continent (or several nearby continents) [] 5
(1) Bahamas
(2) Canada
(3) Mexico
(4) United States
Select your country (or several nearby countries) [] 4
Sorry! since you don't have any existing picks, you must make a
geographic selection.
(1) ftp://carroll.cac.psu.edu/pub/CPAN/
(2) ftp://cpan-du.viaverio.com/pub/CPAN/
(3) ftp://cpan-sj.viaverio.com/pub/CPAN/
(4) ftp://cpan.calvin.edu/pub/CPAN
(5) ftp://cpan.cs.utah.edu/pub/CPAN/
(6) ftp://cpan.cse.msu.edu/
(7) ftp://cpan.erlbaum.net/CPAN/
(8) ftp://cpan.glines.org/pub/CPAN/
(9) ftp://cpan.hostrack.net/pub/CPAN
(10) ftp://cpan.llarian.net/pub/CPAN/
(11) ftp://cpan.mirrors.redwire.net/pub/CPAN/
(12) ftp://cpan.mirrors.tds.net/pub/CPAN
(13) ftp://cpan.netnitco.net/pub/mirrors/CPAN/
(14) ftp://cpan.pair.com/pub/CPAN/
(15) ftp://cpan.teleglobe.net/pub/CPAN
(16) ftp://cpan.uchicago.edu/pub/CPAN/
40 more items, hit SPACE RETURN to show them
i usually choose couple of mirrors here to insure that i'm going to get installation file if some mirrors are down. After choosing the mirrors, you should issue the following command in the CPAN shell:
Code:
cpan> install XML::Parser
next time you issue
Code:
perl -MCPAN -e shell
you will find yourself in the CPAN shell and can issue install commands all over.
3- i would think that there is RPM packages for XML::Parser. i will leave that search for you.