--- afterglow.orig/src/perl/graph/afterglow.pl 2007-09-10 03:22:18.000000000 +0200 +++ afterglow.orig/src/perl/graph/afterglow.pl 2008-03-06 15:31:35.000000000 +0100 @@ -142,8 +142,8 @@ # Program version my $version = "1.5.9"; -use Text::CSV; -my $csvline = Text::CSV->new(); +use Text::CSV_XS; +my $csvline = Text::CSV_XS->new(); # Whether or not verbose mode is enabled. # A value of '1' indicates that verbose mode is enabled. --- afterglow.orig/src/perl/loganalysis/anonymize.pl 2007-07-26 20:55:43.000000000 +0200 +++ afterglow.orig/src/perl/loganalysis/anonymize.pl 2008-03-06 15:29:22.000000000 +0100 @@ -46,8 +46,8 @@ use strict; # Program version my $version = "1.1"; -use Text::CSV; -my $csvline = Text::CSV->new(); +use Text::CSV_XS; +my $csvline = Text::CSV_XS->new(); my $prefix = ""; my $column = 0;