Skip to content

Commit 820c279

Browse files
committed
Merge branch '8.5'
2 parents 2b70348 + 653e99e commit 820c279

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
29/8/17 started 8.5.9
1919
- make --fail stop jpeg read on any libjpeg warning, thanks @mceachen
20+
- don't build enumtypes so often, removing perl as a compile dependancy
2021

2122
2/8/17 started 8.5.8
2223
- fix transparency detection in merge, thanks Haida

libvips/include/vips/Makefile.am

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,7 @@ vips_scan_headers = \
7272
${top_srcdir}/libvips/include/vips/morphology.h \
7373
${top_srcdir}/libvips/include/vips/draw.h \
7474
${top_srcdir}/libvips/include/vips/basic.h \
75-
${top_srcdir}/libvips/include/vips/version.h \
7675
${top_srcdir}/libvips/include/vips/object.h
7776

78-
enumtypes.h: $(vips_scan_headers) Makefile
79-
glib-mkenums --template enumtemplate \
80-
$(vips_scan_headers) > xgen-geth && \
81-
( cmp -s xgen-geth enumtypes.h || cp xgen-geth enumtypes.h ) && \
82-
rm -f xgen-geth
77+
enumtypes.h: $(vips_scan_headers) Makefile.am
78+
glib-mkenums --template enumtemplate $(vips_scan_headers) > enumtypes.h

libvips/iofuncs/Makefile.am

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,7 @@ vips_scan_headers = \
7070
${top_srcdir}/libvips/include/vips/morphology.h \
7171
${top_srcdir}/libvips/include/vips/draw.h \
7272
${top_srcdir}/libvips/include/vips/basic.h \
73-
${top_srcdir}/libvips/include/vips/version.h \
7473
${top_srcdir}/libvips/include/vips/object.h
7574

76-
enumtypes.c: $(vips_scan_headers) Makefile
77-
glib-mkenums --template enumtemplate \
78-
$(vips_scan_headers) > xgen-getc && \
79-
( cmp -s xgen-getc enumtypes.c || cp xgen-getc enumtypes.c ) && \
80-
rm -f xgen-getc
75+
enumtypes.c: $(vips_scan_headers) Makefile.am
76+
glib-mkenums --template enumtemplate $(vips_scan_headers) > enumtypes.c

0 commit comments

Comments
 (0)