• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..14-Nov-201347

aclocal.m4H A D17-Feb-2009187

ChangeLogH A D23-Oct-20082.1 KiB

configureH A D11-Dec-2012329.3 KiB

configure.inH A D11-Dec-20129 KiB

configure.linenoH A D30-Jun-2010626.1 KiB

Makefile.inH A D07-Jul-201017.4 KiB

READMEH A D18-Nov-2002803

tiffio.hH A D31-Mar-2010429

tifftcl.cH A D08-Jul-20102.6 KiB

tifftcl.declsH A D07-Jul-201011.3 KiB

tifftcl.hH A D30-Jun-20102 KiB

tifftclConfig.sh.inH A D23-Oct-20082.2 KiB

tifftclDecls.hH A D07-Jul-201034.2 KiB

tifftclStubInit.cH A D30-Jun-20106.6 KiB

tifftclStubLib.cH A D30-Jun-20101.5 KiB

README

1
2Wrapping the tiff support library for tcl is a bit more complicated
3than libz, or libpng.
4
5(1)	libtiff comes with its own configure command, and there is no
6	configure.in. This means that it is not possible to lift the
7	relevant sections out of it for the configure of the
8	binding.
9
10	Also this configure is not exactly autoconf based (Seems so).
11	One of the things it has to be told is the target/build architecture,
12	as argument instead of via option. Because of this we cannot use
13	AC_CONFIG_SUBDIRS to run the sub-configure.
14
15	We do it directly, and are thus also able to avoid the symlink
16	we had to have in libjpeg/tcl.
17
18(2)	The tif sources have usage of tdarg.h hardwired into them.
19	This means that a compiler not using this header, but varargs.h
20	cannot be used. This is checked in configure.
21