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

..03-May-2022-

ChangeLogH A D09-Apr-2010536 2112

DANGERH A D19-Nov-2002637 1812

Makefile.inH A D03-May-202217.1 KiB488241

READMEH A D22-Mar-2019847 1915

aclocal.m4H A D17-Feb-2009197 118

configureH A D03-May-2022271 KiB9,7717,784

configure.acH A D04-Aug-20208.8 KiB219174

jerror.hH A D03-May-2022420 131

jpeglib.hH A D03-May-2022420 131

jpegtcl.cH A D03-May-20221.9 KiB7921

jpegtcl.declsH A D07-Jul-20104.9 KiB180172

jpegtcl.hH A D03-May-20221.8 KiB6416

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

jpegtclDecls.hH A D03-May-202213.6 KiB338249

jpegtclStubInit.cH A D03-May-20222.1 KiB7453

jpegtclStubLib.cH A D03-May-20221.5 KiB6123

README

1
2Wrapping the jpeg support library for tcl is a bit more complicated
3than libz, or libpng.
4
5(1)	libjpeg 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. Instead the binding run the configure of libjpeg
9	(AC_CONFIG_SUBDIRS) from its own configure and uses the
10	resulting header file (jconfig.h) as usual. A quirk is that
11	the tcl binding is a subdirectory of libjpeg, but to be able
12	to perform the previous operation its has to be the other way
13	around (AC_CONFIG_SUBDIRS is unable to handle '..'
14	correctly). To facility this I placed a symbolic link into the
15	directory of the binding, refering to the parent under the
16	name libjpeg.
17
18(2)	A second trouble spot is described in the file 'DANGER'.
19