You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2009/05/22 01:43:42 UTC

[Couchdb Wiki] Update of "Installing SpiderMonkey" by Vlad GURDIGA

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The following page has been changed by Vlad GURDIGA:
http://wiki.apache.org/couchdb/Installing_SpiderMonkey

The comment on the change is:
Added hint to takle "No package js-devel available." yum message.

------------------------------------------------------------------------------
  ./configure --with-js-lib=/usr/local/spidermonkey/lib --with-js-include=/usr/local/spidermonkey/include
  }}}
  
+ If you get a message like this during "yum install js-devel":
+ 
+ {{{
+ No package js-devel available.
+ Nothing to do
+ }}}
+ 
+ you may need to add a yum repository. Add rpmforge.repo in /etc/yum.repos.d containing:
+ 
+ {{{
+ # Name: RPMforge RPM Repository for Red Hat Enterprise 5 - dag
+ # URL: http://rpmforge.net/
+ [rpmforge]
+ name = Red Hat Enterprise $releasever - RPMforge.net - dag
+ baseurl = ftp://ftp.pbone.net/mirror/atrpms.net/el5-i386/atrpms/stable
+ enabled = 1
+ protect = 0
+ gpgcheck = 0
+ }}}
+ 
+ Now run:
+ 
+ {{{
+ yum clean all
+ yum install js-devel
+ }}}
+ 
+ and you should be OK.
+