Compile of Ruby fails on Ubuntu

I recently upgraded my Ubuntu to Dapper. I am trying to compile ruby on
it. After running configure I edit the ext/Setup file and uncomment the
following lines:

digest
digest/md5
openssl
readline
stringio
zlib

and then I run make which fails with following message

Quote:
SETUP=ext/Setup
EXTOBJS=ext/extinit.o ext/digest/digest.a ext/digest/md5/md5.a
ext/openssl/openssl.a ext/stringio/stringio.a ext/zlib/zlib.a
EXTLIBS=-lssl -lcrypto -lz
making ruby
make[1]: Entering directory /home/navjeet/ruby-1.8.4' gcc -g -O2 -DRUBY_EXPORT -rdynamic -Wl,-export-dynamic -L. main.o ext/extinit.o ext/digest/digest.a ext/digest/md5/md5.a ext/openssl/openssl.a ext/stringio/stringio.a ext/zlib/zlib.a -lruby-static -ldl -lcrypt -lm -lssl -lcrypto -lz -o ruby ext/digest/md5/md5.a(md5init.o).data.rel+0x: undefined reference torb_Digest_MD5_Init’
ext/digest/md5/md5.a(md5init.o).data.rel+0xc): undefined reference to
rb_Digest_MD5_Update' ext/digest/md5/md5.a(md5init.o).data.rel+0x10): undefined reference torb_Digest_MD5_End’
ext/digest/md5/md5.a(md5init.o).data.rel+0x14): undefined reference to
rb_Digest_MD5_Final' ext/digest/md5/md5.a(md5init.o).data.rel+0x1: undefined reference torb_Digest_MD5_Equal’
collect2: ld returned 1 exit status
make[1]: *** [ruby] Error 1
make[1]: Leaving directory `/home/navjeet/ruby-1.8.4’
make: *** [all] Error 2

What could be the source of this error? Do you think I may not have some
library installed or something else?

-Jeet

there are some libs that ubuntu requires. something about yaml and
something
else, dont remember.
i used this guide
http://weblog.freeopinion.org/articles/2005/11/17/setting-up-ruby-in-ubuntu

and it seemed to work.

any reason you are not using apt? i actually got ruby on dapper by
apt-get install ruby1.8
then made a symlink to /usr/bin/ruby

hope this helps

I think if you just do “apt-get build-dep ruby” you should be able to
compile it.

cam

Navjeet C. wrote:

Maybe you want to use --disable-FEATURE as options to configure.sh
instead of updating setup?

Cameron M. wrote:

I think if you just do “apt-get build-dep ruby” you should be able to
compile it.

cam

Cameron,

See my previous response about rubygems problem.

shawn bright wrote:

there are some libs that ubuntu requires. something about yaml and
something
else, dont remember.
i used this guide
http://weblog.freeopinion.org/articles/2005/11/17/setting-up-ruby-in-ubuntu

and it seemed to work.

That did not help.

any reason you are not using apt? i actually got ruby on dapper by
apt-get install ruby1.8
then made a symlink to /usr/bin/ruby

hope this helps

Well I did that finally which took care of ruby but now I have similar
9if not same) problem when running ruby setup.rb to build rubygems as
shown below:

/usr/local/lib/ruby/1.8/i686-linux/digest/md5.so:
/usr/local/lib/ruby/1.8/i686-linux/digest/md5.so: undefined symbol:
rb_Digest_MD5_Init - /usr/local/lib/ruby/1.8/i686-linux/digest/md5.so
(LoadError)
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
require' from /usr/local/lib/ruby/site_ruby/1.8/rubygems/package.rb:10 from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in require’
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/builder.rb:7
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
require' from /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:93:in manage_gems’
from /home/navjeet/rubygems-0.9.0/./post-install.rb:70:in
install_sources' from /home/navjeet/rubygems-0.9.0/./post-install.rb:81:in try_run_hook’
from setup.rb:577:in run_hook' from setup.rb:1315:in exec_task_traverse’
from setup.rb:1168:in exec_install' from setup.rb:887:in exec_install’
from setup.rb:705:in invoke' from setup.rb:674:in invoke’

Navjeet C. wrote:

The above will install all dependencies (libs) that are required to
build ruby from source.

Cliff C. wrote:

Navjeet C. wrote:

The above will install all dependencies (libs) that are required to
build ruby from source.

Cliff,

The ruby has been installed now using apt-get, but similar issue is
there running ruby setup.rb in rubygems source code as I mention above.

Hey,

The ruby has been installed now using apt-get, but similar issue is
there running ruby setup.rb in rubygems source code as I mention above.

If i understand you correctly, you have installed the ubuntu packages
of ruby? In that case, the errors you are getting from setup.rb
indicate that it is trying to use the stuff that you compiled yourself
in /usr/local/lib/ … maybe you should delete that stuff and try
again.

cam

Cameron M. wrote:

Hey,

The ruby has been installed now using apt-get, but similar issue is
there running ruby setup.rb in rubygems source code as I mention above.

If i understand you correctly, you have installed the ubuntu packages
of ruby? In that case, the errors you are getting from setup.rb
indicate that it is trying to use the stuff that you compiled yourself
in /usr/local/lib/ … maybe you should delete that stuff and try
again.

cam

Well thanks for that clue Cameron. I did the ultimate, blew away
/user/local/lib/ruby and started with a fresh install using apt-get and
so far ruby, gems and rails are up and running.

Thanks to all who responded to my message.

http://linuxlooney.com/past/2006/8/15/installing_ruby_and_rails_on/