[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ruby.h, intern.h, library.so and installing Ruby 1.9

Tirengarfio Tirengarfio

9/26/2007 4:30:00 PM

Hi,

im trying to install a library called Dridflow. The instructions to
install this library says:



"Required Software:

* 1 : Ruby 1.9 2005 (make sure you have the *.so and *.h files)


Make sure it contains ruby.h and intern.h and related files. It's also
recommended to have libruby.so. Those extra files may be in a package
called ruby-dev if you are using RPM or DEB/FINK"




So i have installed ruby in this way:

sudo apt-get install ruby1.9
sudo apt-get install ruby1.9-dev

But now i have searched the files the instructions says i should have
(ruby.h, intern.h and libruby.so) and there are not at my system. How
can i get those files?

UbuntuStudio 7.04/ Intel Core Duo

br.
GARFF
--
Posted via http://www.ruby-....

2 Answers

Arlen Cuss

9/26/2007 4:39:00 PM

0

> sudo apt-get install ruby1.9
> sudo apt-get install ruby1.9-dev
>
> But now i have searched the files the instructions says i should have
> (ruby.h, intern.h and libruby.so) and there are not at my system. How
> can i get those files?
>


After installing ruby1.9-dev, you should definitely have those files.

Please ensure ruby1.9-dev is installed, then check:

/usr/lib/libruby1.9.so
/usr/lib/ruby/1.9/*/intern.h
/usr/lib/ruby/1.9/*/ruby.h

I'm using an amd64 install of Ubuntu 7.10, so I find the last two in /usr/lib/ruby/1.9/x86_64-linux/; yours will vary.

HTH!

Arlen


Tirengarfio Tirengarfio

9/26/2007 5:12:00 PM

0


yes it's true sorry...
--
Posted via http://www.ruby-....