Open GoogleCodeExporter opened 9 years ago
Your program is linking as if the tiff library is not available.
If you ran configure to generate config_auto.h, and if your tiff library is
installed, config_auto.h should have a line that says:
#define HAVE_LIBTIFF 1
If it is 0, that would cause linking of stubs for tiff calls, as your output
demonstrates.
Look at the file configure.ac. It checks for libtiff in lines 66ff, by looking
for the function TIFFOpen().
If your tiff library is installed, perhaps it is not on your LD_LIBRARY_PATH,
which could cause it not to be found.
To find your library:
locate libtiff
On my linux box it is in:
/usr/lib/i386-linux-gnu/
Your linker should use such /usr/lib/... paths by default, without you having
to explicitly name them in LD_LIBRARY_PATH. However, if it is in
/usr/local/lib/..., you may need to have that directory on the path.
Let me know what you find out.
Original comment by dan.bloo...@gmail.com
on 18 Jul 2014 at 11:08
Original issue reported on code.google.com by
nageshre...@gmail.com
on 17 Jul 2014 at 10:34