[libxml-devel] xml/libxml won't load in OS X 10.5.2 Leopard

2008-02-27 Thread Christopher J. Bottaro
Hello, I installed 0.5.3 via Gem, then removed 0.3.8.4. Now when I try to require 'xml/libxml' I get 'no such file to load -- libxml_so'. That file used to reside here: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/libxml-ruby-0.3.8.4/lib/xml/libxml_so.bundle

Re: [libxml-devel] xml/libxml won't load in OS X 10.5.2 Leopard

2008-02-27 Thread Calvin Bascom
I ran into this as well installing the 0.5.3 gem on both CentOS and Fedora platforms. To get it working I had to rebuild the .so file manually after the gem install: cd /usr/local/lib/ruby/gems/1.8/gems/libxml-ruby-0.5.3 ruby xml/libxml/extconf.rb make make install make distclean The make inst

Re: [libxml-devel] xml/libxml won't load in OS X 10.5.2 Leopard

2008-02-27 Thread Trans
On Feb 27, 1:43 pm, Calvin Bascom <[EMAIL PROTECTED]> wrote: > I ran into this as well installing the 0.5.3 gem on both CentOS and > Fedora platforms. To get it working I had to rebuild the .so file > manually after the gem install: > > cd /usr/local/lib/ruby/gems/1.8/gems/libxml-ruby-0.5.3 > ru