• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangeLogH A D23-Oct-20082.1 KiB6141

Makefile.inH A D03-May-202217.5 KiB501246

READMEH A D22-Mar-2019823 2115

aclocal.m4H A D17-Feb-2009197 118

configureH A D03-May-2022275.7 KiB9,9697,935

configure.acH A D16-Dec-20209.1 KiB225179

tiffio.hH A D03-May-2022429 131

tifftcl.cH A D03-May-20223 KiB12025

tifftcl.declsH A D21-Aug-202011.9 KiB480466

tifftcl.hH A D03-May-20221.8 KiB6315

tifftclConfig.sh.inH A D03-May-20222.2 KiB5846

tifftclDecls.hH A D03-May-202234.5 KiB908682

tifftclStubInit.cH A D03-May-20226.6 KiB246225

tifftclStubLib.cH A D03-May-20221.4 KiB5720

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.ac. 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