Skip Menu |

This queue is for tickets about the Curses CPAN distribution.

Report information
The Basics
Id: 133685
Status: new
Priority: 0/
Queue: Curses

People
Owner: Nobody in particular
Requestors: TODDR [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.37
Fixed in: (no value)



Subject: Switch to XSLoader
We patch this module by switching to the lighter XSLoader. I'm attaching the patch in case you want to use it. diff --git a/Curses/Curses.pm b/Curses.pm index 9763e0eca1..c7879d76d3 100644 --- a/Curses.pm +++ b/Curses.pm @@ -55,10 +55,10 @@ $VERSION = '1.37'; # Makefile.PL picks this up use Carp; require Exporter; -require DynaLoader; -@ISA = qw(Exporter DynaLoader); +use XSLoader; +@ISA = qw(Exporter); -bootstrap Curses; +XSLoader::load 'Curses', $VERSION; sub new { my $pkg = shift;