Hello,

I used to use Hash::Merge, but now I get the following error message:
/usr/bin/perl: symbol lookup error: /usr/local/lib64/perl5/auto/Clone/Clone.so: undefined symbol: Perl_Gthr_key_ptr

This is the code giving the error:
#!/usr/bin/perl -w
use Hash::Merge qw( merge );
    my %a = (
                'foo'    => 1,
            'bar'    => [ qw( a b e ) ],
            'querty' => { 'bob' => 'alice' },
        );
    my %b = (
                'foo'     => 2,
                'bar'    => [ qw(c d) ],
                'querty' => { 'ted' => 'margeret' },
        );
print "call\n" ;
    my %c = %{ merge( \%a, \%b ) };


Any idea?

Thank.

--
======================================================================
 Patrick DUPRÉ                |   |  email: pdu...@kegtux.org
======================================================================
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to