1999.02.12 23:20 "Question: libtiff on LINUX", by Tom DeGerlia

Hello,

I'm sure this problem is simple, but I can't seem to solve it. I run Linux (Red Hat). After installing the libtiff development package (and related packages) through the RPM, everything appears fine. To test the library, I built a very small program:

#include <tiffio.h>
void main(void)
{
 TIFF* grphimage = TIFFOpen("110121.tif","r");
 TIFFClose(grphimage);
}

When I link, I consistently get the errors:

    undefined reference to 'TIFFOpen'
    undefined reference to 'TIFFClose'

Does anyone have any idea what might be causing this, or a possible solution? Any help you can give will be very much appreciated.

Thank you,

Tom DeGerlia
tdegerlia@roachnet.com