From: Laurent S. <lsa...@ap...> - 2007-11-30 12:11:56
|
Hi, On Nov 30, 2007, at 1:33 AM, Georg wrote: > hello everyone, > > I just built rubycocoa 0.13.0 from source on tiger and discovered you > may want to change line 1260 in file misc/bridgesupport/ > gen_bridge_metadata.rb > from > document << REXML::DocType.new(['signatures', 'SYSTEM', > 'file://localhost/System/Library/DTDs/BridgeSupport.dtd']) > > to > document << REXML::DocType.new(['signatures', 'SYSTEM', > '"file://localhost/System/Library/DTDs/BridgeSupport.dtd"']) > > So there are no eval errors after building the individual > bridgesupport files > > otherwise no hitches, I uninstalled webkit 3 beta before upgrading to > 10.4.11 and wasn't bitten by any webkit-related bugs when compiling. We used to have the single quotes in the DTD URI part, but we removed them because otherwise there was a problem with the version of REXML that ships with Ruby 1.8.6 p111. What version of Ruby do you use? If you use a version below than p111 it might explain your eval errors. Ultimately, gen_bridge_metadata should definitely detect if you run REXML < p111 and use the old version then. Laurent |