Merge branch '8.8'
This commit is contained in:
commit
ceb2db513d
@ -20,6 +20,8 @@
|
|||||||
- add iiif layout to dzsave
|
- add iiif layout to dzsave
|
||||||
- fix use of resolution-unit metadata on tiff save [kayarre]
|
- fix use of resolution-unit metadata on tiff save [kayarre]
|
||||||
|
|
||||||
|
17/9/19 started 8.8.4
|
||||||
|
|
||||||
31/8/19 started 8.8.3
|
31/8/19 started 8.8.3
|
||||||
- revert sharpen restoring the input colourspace
|
- revert sharpen restoring the input colourspace
|
||||||
- xres/yres tiffsave params were in pixels/cm [f--f]
|
- xres/yres tiffsave params were in pixels/cm [f--f]
|
||||||
|
@ -1336,6 +1336,7 @@ AC_OUTPUT([
|
|||||||
libvips/Makefile
|
libvips/Makefile
|
||||||
libvips/arithmetic/Makefile
|
libvips/arithmetic/Makefile
|
||||||
libvips/colour/Makefile
|
libvips/colour/Makefile
|
||||||
|
libvips/colour/profiles/Makefile
|
||||||
libvips/conversion/Makefile
|
libvips/conversion/Makefile
|
||||||
libvips/convolution/Makefile
|
libvips/convolution/Makefile
|
||||||
libvips/deprecated/Makefile
|
libvips/deprecated/Makefile
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
noinst_LTLIBRARIES = libcolour.la
|
noinst_LTLIBRARIES = libcolour.la
|
||||||
|
|
||||||
|
SUBDIRS = profiles
|
||||||
|
|
||||||
libcolour_la_SOURCES = \
|
libcolour_la_SOURCES = \
|
||||||
profiles.c \
|
profiles.c \
|
||||||
profiles.h \
|
profiles.h \
|
||||||
@ -42,7 +44,6 @@ profiles.c:
|
|||||||
./wrap-profiles.sh profiles profiles.c
|
./wrap-profiles.sh profiles profiles.c
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
profiles \
|
|
||||||
wrap-profiles.sh
|
wrap-profiles.sh
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
3
libvips/colour/profiles/Makefile.am
Normal file
3
libvips/colour/profiles/Makefile.am
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
EXTRA_DIST = \
|
||||||
|
cmyk.icm \
|
||||||
|
sRGB.icm
|
@ -12,10 +12,6 @@ set -e
|
|||||||
poppler=$test_images/blankpage.pdf
|
poppler=$test_images/blankpage.pdf
|
||||||
poppler_ref=$test_images/blankpage.pdf.png
|
poppler_ref=$test_images/blankpage.pdf.png
|
||||||
|
|
||||||
# rsvg / svgload reference image
|
|
||||||
rsvg=$test_images/blankpage.svg
|
|
||||||
rsvg_ref=$test_images/blankpage.svg.png
|
|
||||||
|
|
||||||
# giflib / gifload reference image
|
# giflib / gifload reference image
|
||||||
giflib=$test_images/trans-x.gif
|
giflib=$test_images/trans-x.gif
|
||||||
giflib_ref=$test_images/trans-x.png
|
giflib_ref=$test_images/trans-x.png
|
||||||
@ -220,10 +216,7 @@ if test_supported pdfload; then
|
|||||||
test_loader $poppler_ref $poppler pdfload 0
|
test_loader $poppler_ref $poppler pdfload 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test_supported svgload; then
|
# don't test SVG --- the output varies too much between librsvg versions
|
||||||
# librsvg can give small differences on some platforms
|
|
||||||
test_loader $rsvg_ref $rsvg svgload 10
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test_supported gifload; then
|
if test_supported gifload; then
|
||||||
test_loader $giflib_ref $giflib gifload 0
|
test_loader $giflib_ref $giflib gifload 0
|
||||||
|
Loading…
Reference in New Issue
Block a user