Digest::md5 needed for RHEL 6.4

Hey, I've got a package that requires 'Digest:md5' to be installed but I can't locate a source for it from Redhat. Poking around on the internet I found some stuff that seemed to be for RHEL 6.4 but when I had yum try a local install it gives me this error.

Transaction Check Error:
  file /usr/share/man/man3/Digest::MD5.3pm.gz from install of perl-Digest-MD5-2.39-1.el6.rf.x86_64 conflicts with file from package perl-4:5.10.1-131.el6_4.x86_64

Does anyone have a source for a version of this file that will work? Is there a RHEL repository that I can add to get this?

Sorry, I work mainly on Solaris, so apologies if this is an easy question.

Have you tried installing it from CPAN?

Thanks for the tip. I hadn't seen that site before. I hit this page and then made 2.39. But, this installation didn't satisfy the requirements of my application. Perhaps it's the method I was using?

make install
cp MD5.pm blib/lib/Digest/MD5.pm
/usr/bin/perl /usr/share/perl5/ExtUtils/xsubpp  -typemap /usr/share/perl5/ExtUtils/typemap -typemap typemap  MD5.xs > MD5.xsc && mv MD5.xsc MD5.c
gcc -c   -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic   -DVERSION=\"2.53\" -DXS_VERSION=\"2.53\" -fPIC "-I/usr/lib64/perl5/CORE"  -DU32_ALIGNMENT_REQUIRED MD5.c
MD5.xs: In function �XS_Digest__MD5_md5�:
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:753: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
MD5.xs:766: warning: null argument where non-null required (argument 1)
Running Mkbootstrap for Digest::MD5 ()
chmod 644 MD5.bs
rm -f blib/arch/auto/Digest/MD5/MD5.so
gcc  -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic MD5.o  -o blib/arch/auto/Digest/MD5/MD5.so     \
                \

chmod 755 blib/arch/auto/Digest/MD5/MD5.so
cp MD5.bs blib/arch/auto/Digest/MD5/MD5.bs
chmod 644 blib/arch/auto/Digest/MD5/MD5.bs
Manifying blib/man3/Digest::MD5.3pm
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Installing /usr/lib64/perl5/auto/Digest/MD5/MD5.so
Installing /usr/lib64/perl5/auto/Digest/MD5/MD5.bs
Installing /usr/lib64/perl5/Digest/MD5.pm
Installing /usr/share/man/man3/Digest::MD5.3pm
Appending installation info to /usr/lib64/perl5/perllocal.pod
#

Does it still give the exact same error?