According to T.J. Yang:
> I have been spoiled by command like "./configure;make;make install" 
> for a long time until I run into this problem. Now it is a good chance 
> for me to learn autoconf with the help from the goat book 
> at http://sources.redhat.com/autobook/. I hope I can answer your
> question better after I read though the config.* files generated
> by "CC=cc ./configure" command. 
> 
> I think the problem is in "configure.in" file. I use  "CC=cc
> ./configure" to specify
> sun workshop C/C++ compiler but it still generate preprocessor option
> "-MD" 
> for gcc. I will try to understand the configure.in but I don't think I
> will
> be able to come up with a fix.
> 
> For version 3.2.0.b3, I use "CC=gcc ./configure", the "CC=gcc
> ./configure;make;make install"
> went smooth until I run rundig and hit " arithmetic error ". The 3.1.5
> version
> is truely a stable one. I got 3.1.5 compiled with gcc and runs fine.

For the arithmetic error, you need to add --disable-shared on Solaris.
So, for 3.2.0b3, you should use:

        CC=gcc ./configure --disable-shared
        make
        make install

-- 
Gilles R. Detillieux              E-mail: <[EMAIL PROTECTED]>
Spinal Cord Research Centre       WWW:    http://www.scrc.umanitoba.ca/~grdetil
Dept. Physiology, U. of Manitoba  Phone:  (204)789-3766
Winnipeg, MB  R3E 3J7  (Canada)   Fax:    (204)789-3930

_______________________________________________
htdig-dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/htdig-dev

Reply via email to