In message "[ruby-talk:01879] Re: Ruby 1.5.3 under Tru64 (Alpha)?"
on 00/03/16, Clemens Hintze <clemens.hintze / alcatel.de> writes:
|Again. I have tried today the last commited version of Ruby, that I
|have checkedout yesterday evening. Unfortunately the configure process
|doesn't work now on the Tru64. The last output I got was:
How about changing
if [ "$without_gcc" = "yes" ]; then
to
if test "$without_gcc" = "yes" ; then
at line 778 in configure.in?
Or changing
if "$without_gcc" = "yes" ; then
to
if test "$without_gcc" = "yes" ; then
at line 4937 configure?