Description: Fix term readline load
 Original upstream code leads to Padre FTBS. Upstream was tweaked to
 work on Windows, but this leads to build failure. 
 .
 After some discussion with bowtie (upstream author), we decided to
 patch Debian package to revert the modifications done for Windows.
Bug-Debian: 713433
Author: Dod
--- a/lib/Debug/Client.pm
+++ b/lib/Debug/Client.pm
@@ -12,16 +12,8 @@
 
 our $VERSION = '0.26';
 
-BEGIN {
-	use Term::ReadLine;
-	$ENV{TERM} = 'dumb' if !exists $ENV{TERM};
-
-	eval { my $term = Term::ReadLine->new('none') };
-	if ($EVAL_ERROR) {
-		local $ENV{PERL_RL} = ' ornaments=0';
-	}
-}
-
+use Term::ReadLine;
+ 
 use utf8;
 use IO::Socket::IP 0.21;
 use Carp qw(carp croak);
