From: nobu.nokada@... Date: 2001-12-08T19:01:27+09:00 Subject: [ruby-talk:27914] Re: Building XMLParser with MS VC++ At Sat, 8 Dec 2001 18:09:49 +0900, Rich Kilmer wrote: > I had to remove the perl references as well...I don't do perl ;) perl is used only when running extconf.rb --with-perl-enc-map. You can specify encoding map directory, or without the option, direct the map not to be used at all. Both, perl isn't used. And, sorry to have forgotten, you may want to apply also this patch, unless you have pwd command. --- extconf.rb~ Sun Oct 15 15:22:39 2000 +++ extconf.rb Sat Dec 8 18:40:33 2001 @@ -9,5 +9,5 @@ require 'mkmf' -cwd=`pwd`.chomp! +cwd = Dir.pwd ## Encoding maps may be stored in $perl_archlib/XML/Parser/Encodins/ Nobu Nakada