~ubuntu-branches/ubuntu/saucy/argyll/saucy

« back to all changes in this revision

Viewing changes to tiff/Jamfile

  • Committer: Package Import Robot
  • Author(s): Christian Marillat
  • Date: 2012-04-25 07:46:07 UTC
  • mfrom: (1.2.2) (13.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20120425074607-yjqadetw8kum9skc
Tags: 1.4.0-4
Should Build-Depends on libusb-dev (Closes: #670329).

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        DEFINES += "unix" ;                     # libtiff assumes this
9
9
        # Genfile actually creates libtiff/tif_config.h and libtiff/tiffconf.h:
10
10
        GenFileNND libtiff/tif_config.h :
11
 
                  "(cd $(SUBDIR); chmod +x configure ; ./configure --disable-jpeg --disable-old-jpeg --disable-pixarlog --disable-zlib --disable-jbig)" : configure ;
 
11
                  "(cd $(SUBDIR); chmod +x configure ; ./configure --disable-old-jpeg --disable-pixarlog --disable-zlib --disable-jbig)" : configure ;
 
12
#                 "(cd $(SUBDIR); chmod +x configure ; ./configure --disable-jpeg --disable-old-jpeg --disable-pixarlog --disable-zlib --disable-jbig)" : configure ;
12
13
        # Workaround Jam problem of two products from one action:
13
14
        FakeFile libtiff/tiffconf.h : libtiff/tif_config.h ;
14
15
}
36
37
        tif_dumpmode.c tif_error.c tif_getimage.c tif_flush.c tif_luv.c
37
38
        tif_lzw.c tif_next.c tif_open.c tif_packbits.c tif_print.c 
38
39
        tif_read.c tif_swab.c tif_strip.c tif_thunder.c tif_tile.c 
39
 
        tif_version.c tif_warning.c tif_write.c tif_extension.c ;
 
40
        tif_version.c tif_warning.c tif_write.c tif_extension.c
 
41
        tif_jpeg.c tif_ojpeg.c ;
40
42
 
41
43
if $(UNIX) {
42
44
        LIBSRCS += tif_unix.c ;
45
47
}
46
48
 
47
49
# Optional codecs not included
48
 
# tif_jpeg.c
49
 
# tif_ojpeg.c
50
50
# tif_zip.c
51
51
# tif_pixarlog.c
52
 
Library libtiff.lib : [ CatPaths libtiff : $(LIBSRCS) ] : : : libtiff ;
 
52
Library libtiff.lib : [ CatPaths libtiff : $(LIBSRCS) ] : : : $(JPEGINC) libtiff ;
53
53
 
54
54
# copy header file to lib directory
55
55
File tiffconf.h    : libtiff/tiffconf.h ;