[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: libtiff errors compiling gnustep-gui-0.6.9
From: |
Adam Fedor |
Subject: |
Re: libtiff errors compiling gnustep-gui-0.6.9 |
Date: |
Fri, 06 Jul 2001 10:38:43 -0600 |
"Kevin R. Bullock" wrote:
>
> /usr/lib/libtiff.so.3: undefined reference to `deflate'
> /usr/lib/libtiff.so.3: undefined reference to `inflate'
> /usr/lib/libtiff.so.3: undefined reference to `inflateInit_'
> /usr/lib/libtiff.so.3: undefined reference to `deflateInit_'
> /usr/lib/libtiff.so.3: undefined reference to `inflateReset'
> /usr/lib/libtiff.so.3: undefined reference to `deflateReset'
> /usr/lib/libtiff.so.3: undefined reference to `inflateSync'
> /usr/lib/libtiff.so.3: undefined reference to `deflateParams'
> /usr/lib/libtiff.so.3: undefined reference to `inflateEnd'
> /usr/lib/libtiff.so.3: undefined reference to `deflateEnd'
>
> I am using Slackware 8.0, libtiff 3.5.5, gcc 2.95.3. Any suggestions?
You're tiff library requires zlib. You can try adding
-lz at the end of the line
gui/Source/GNUmakefile.preamble:LIBRARIES_DEPEND_UPON =
-l$(FOUNDATION_LIBRARY_NAME) -ltiff
as a temoporary fix.