# HG changeset patch # User cafoote@yahoo.com # Date 1262237528 0 # Node ID a158ef76d3407a7de9b8ccec4368ea7949e6f6b9 # Parent 0c599539557950d7937f59a979d9734d91ec8b86 perl: Fix the package names for some types. Closes #10973. committer: Paul Aurich diff -r 0c5995395579 -r a158ef76d340 COPYRIGHT --- a/COPYRIGHT Thu Dec 31 05:23:13 2009 +0000 +++ b/COPYRIGHT Thu Dec 31 05:32:08 2009 +0000 @@ -154,6 +154,7 @@ David Fiander Rob Flynn Rob Foehl (rwf) +Chris Foote Alan Ford Nathan Fredrickson Chris J. Friesen diff -r 0c5995395579 -r a158ef76d340 ChangeLog.API --- a/ChangeLog.API Thu Dec 31 05:23:13 2009 +0000 +++ b/ChangeLog.API Thu Dec 31 05:32:08 2009 +0000 @@ -7,6 +7,13 @@ purple_xfer_request_denied if an error is found when selecting a file to send. Request denied is still used when a receive request is not allowed. + Perl: + Changed: + * Corrected the package names for the PurpleProxyType and + PurpleLogReadFlags enums to have the correct number of colons + (from Purple::ProxyType:::: to Purple::ProxyType:: + and Purple::Log:ReadFlags:::: to + Purple::Log::ReadFlags::) (Chris Foote) version 2.6.4 (11/29/2009): No changes diff -r 0c5995395579 -r a158ef76d340 libpurple/plugins/perl/common/Log.xs --- a/libpurple/plugins/perl/common/Log.xs Thu Dec 31 05:23:13 2009 +0000 +++ b/libpurple/plugins/perl/common/Log.xs Thu Dec 31 05:32:08 2009 +0000 @@ -6,7 +6,7 @@ BOOT: { HV *type_stash = gv_stashpv("Purple::Log::Type", 1); - HV *flags_stash = gv_stashpv("Purple::Log:ReadFlags::", 1); + HV *flags_stash = gv_stashpv("Purple::Log::ReadFlags", 1); static const constiv *civ, type_const_iv[] = { #define const_iv(name) {#name, (IV)PURPLE_LOG_##name} diff -r 0c5995395579 -r a158ef76d340 libpurple/plugins/perl/common/Proxy.xs --- a/libpurple/plugins/perl/common/Proxy.xs Thu Dec 31 05:23:13 2009 +0000 +++ b/libpurple/plugins/perl/common/Proxy.xs Thu Dec 31 05:32:08 2009 +0000 @@ -5,7 +5,7 @@ BOOT: { - HV *stash = gv_stashpv("Purple::ProxyType::", 1); + HV *stash = gv_stashpv("Purple::ProxyType", 1); static const constiv *civ, const_iv[] = { #define const_iv(name) {#name, (IV)PURPLE_PROXY_##name}