Robert L Cochran <[EMAIL PROTECTED]> wrote:
> While compiling version 3.5.4 using gcc, I got these messages from 
> 'make' on my CentOS 5 host. It looks to me like the 'make' step failed. 
> I can post the config.log if that would help.
> 
> How can I fix this to get a successful compile?
> 

I don't see any errors in your make output, only warnings.
Did I overlook something, or are you concerned about the
warnings.

The warnings all have to do with the fact that you are
compiling on a machine with 64-bit pointers and 32-bit
integers.  The warnings are all harmless and the code
works as intended as long as

     sizeof(int) <= sizeof(void*)

Perhaps a reader can suggest ways of eliminating these
warnings.

--
D. Richard Hipp <[EMAIL PROTECTED]>


-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to