[LDAPsh-cvs] ldapsh ldapsh,1.39,1.40
Status: Beta
Brought to you by:
rcorvalan
From: <rco...@us...> - 2003-12-23 10:46:49
|
Update of /cvsroot/ldapsh/ldapsh In directory sc8-pr-cvs1:/tmp/cvs-serv8594 Modified Files: ldapsh Log Message: Removed the usage of Unicode::MapUTF8 package since it has some problems to compile on some boxes, and it is not available on Win32. We should look at a better and more portable solution. Perl 5.8 handles Unicode without needing any external module? Index: ldapsh =================================================================== RCS file: /cvsroot/ldapsh/ldapsh/ldapsh,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** ldapsh 15 Dec 2003 12:27:02 -0000 1.39 --- ldapsh 23 Dec 2003 10:46:45 -0000 1.40 *************** *** 236,241 **** =item * B<Term::ReadLine> - =item * B<Unicode::MapUTF8> - =back --- 236,239 ---- *************** *** 265,269 **** use Term::ReadLine; use Data::Dumper qw(Dumper); ! use Unicode::MapUTF8 qw(to_utf8 from_utf8); use subs qw(bind connect delete dump exit mkdir rename reset); --- 263,267 ---- use Term::ReadLine; use Data::Dumper qw(Dumper); ! #use Unicode::MapUTF8 qw(to_utf8 from_utf8); use subs qw(bind connect delete dump exit mkdir rename reset); |