Hi there,
So I've stood up a CentOS 5 server. I've downloaded and extracted RT 4.0.5. Through the make fixdeps and testdeps I've had to do a lot of wrangling to get all the dependencies to install correctly. I had to upgrade Perl from 5.8 to 5.12 (so I believe I have 2 Perl installs at this point).
Getting right to it, I only have one dependency that's missing. When I run make testdeps | grep MISSING I get the following:
XML::RSS ...MISSING
SOME DEPENDENCIES WERE MISSING.
XML::RSS ...MISSING
make: *** [testdeps] Error 1
When I open up CPAN and attempt to install, I get the following:
install XML::RSS
Going to read '/root/.cpan/Metadata'
Database was generated on Sat, 21 Apr 2012 21:19:04 GMT
XML::RSS is up to date (1.49).
I renamed the old
perl to be "perl58" (so if I absolutely need it in the future, I can rename it back). Then I made a symbolic link to the new perl binary so
that the location of the old binary still pointed to it
mv /usr/bin/perl /usr/bin/perl58
ln -s /usr/local/bin/perl /usr/bin/perl
Is there something I missed? Any thoughts? Thanks in advance.
Scott