[Image-SIG] installation problem

Fredrik Lundh fredrik@pythonware.com
Thu, 30 Mar 2000 10:19:34 +0200


Wilson-K.H. Cheung <wilson-k.h.cheung@motorola.com> wrote:
> checking for ANSI C header files... (cached) no
> checking for inline... (cached) inline
> checking whether byte ordering is bigendian... (cached) yes
> checking size of char... (cached) 0
> checking size of short... (cached) 0
> checking size of int... (cached) 0
> checking size of long... (cached) 0
> checking size of float... (cached) 0
> checking size of double... (cached) 0

according to autoconf, you compiler thinks that
sizeof(<any type>) is zero.  I doubt that's true...

I suggest that you do a "make distclean", and run
./configure again.  if the problem persists, studying
the config.log file might help you figure out what's
wrong.

</F>