I guess I am not as lucky as other members. I downloaded the binary for AIX 5.2 and have some problems. ruby -v returns; /usr/local/bin/ruby182/bin # ruby -v ruby 1.8.2 (2004-12-25) [powerpc-aix5.2.0.0] Running the test program or my own, I get: /usr/local/bin/ruby182/bin # ruby testrb testrb:2:in `require': No such file to load -- test/unit (LoadError) from testrb:2 Any script with the "require" stmt fails. Regards, Victor On 8/27/05, ober <ober / linbsd.org> wrote: > That appears to work. > > Thanks! > > On Tue, 23 Aug 2005, KUBO Takehiro wrote: > > > ober <ober / linbsd.org> writes: > > > >> Well I am trying to get it to compile on 5.1. > >> I will try this process for compiling. > >> No, this version wont work on 5.1. > > > > ruby 1.8.2 on AIX 5.1 with IPv4 socket was also built, which was > > configured with '--disable-ipv6' and '--prefix=/usr/local/ruby182' > > > > binary: > > http://www.jiubao.org/tmp/ruby182-aix51.tar.gz (AIX 5.1) > > http://www.jiubao.org/tmp/ruby182-aix52.tar.gz (AIX 5.2) > > > > root user: > > cd /usr/local > > gzip -dc ruby182-aix51.tar.gz | tar xvf - > > ..or.. > > gzip -dc ruby182-aix52.tar.gz | tar xvf - > > > > users: > > PATH=$PATH:/usr/local/ruby182/bin > > export PATH > > > > They are tested by the following simple script. > > > > require 'net/http' > > Net::HTTP.start('www.example.com', 80) { |http| > > response = http.get('/index.html') > > puts response.body > > } > > > > -- > > KUBO Takehiro > > email: kubo / jiubao.org > > web: http://www.jiubao.org > > GnuPG fingerprint = 5F7B C8EF CA16 57D0 FDE1 9F47 C001 1F93 AC08 2262 > > > >