Diff for /db/prgsrc/eq/Attic/findequal.pl between versions 1.5 and 1.10

version 1.5, 2001/05/18 22:46:54 version 1.10, 2001/08/04 11:41:50
Line 32  use POSIX qw (locale_h); Line 32  use POSIX qw (locale_h);
   
 do "common.pl";  do "common.pl";
   
   my ($thislocale);
   if ($^O =~ /win/i) {
           $thislocale = "Russian_Russia.20866";
   } else {
           $thislocale = "ru_RU.KOI8-R";
   }
   POSIX::setlocale( &POSIX::LC_ALL, $thislocale );
   if ((uc 'Á') ne 'á') {die "!Koi8-r locale not installed!\n"};
   
   
   
   if ((uc 'Á') ne 'á') {die "!Koi8-r locale not installed!\n"};
   
   
   
 if (checktable('equalto')) {die "The table equalto exists. You must delete it first!\n"};  if (checktable('equalto')) {die "The table equalto exists. You must delete it first!\n"};
   
   if ((uc 'Á') ne 'á') {die "!Koi8-r locale not installed!\n"};
   
   
   
 print "Creating equalto table...\n";  print "Creating equalto table...\n";
   
         mydo("CREATE TABLE equalto (          mydo("CREATE TABLE equalto (

Removed from v.1.5  
changed lines
  Added in v.1.10


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>