configure should add meson files to make dist
add meson.build etc. to EXTRA_DIST see https://github.com/libvips/libvips/issues/2876
This commit is contained in:
parent
e9414f8d8f
commit
d9f31be67d
15
Makefile.am
15
Makefile.am
@ -9,14 +9,17 @@ SUBDIRS = \
|
|||||||
fuzz
|
fuzz
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
m4 \
|
|
||||||
benchmark \
|
|
||||||
autogen.sh \
|
autogen.sh \
|
||||||
vips.pc.in \
|
benchmark \
|
||||||
vips-cpp.pc.in \
|
|
||||||
suppressions \
|
|
||||||
depcomp \
|
depcomp \
|
||||||
README.md
|
m4 \
|
||||||
|
meson.build \
|
||||||
|
meson_options.txt \
|
||||||
|
po/meson.build \
|
||||||
|
README.md \
|
||||||
|
suppressions \
|
||||||
|
vips-cpp.pc.in \
|
||||||
|
vips.pc.in
|
||||||
|
|
||||||
pkgconfig_DATA = vips.pc vips-cpp.pc
|
pkgconfig_DATA = vips.pc vips-cpp.pc
|
||||||
|
|
||||||
|
@ -54,8 +54,9 @@ tidy: $(libvips_cpp_la_SOURCES)
|
|||||||
-- $(AM_CPPFLAGS)
|
-- $(AM_CPPFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
README.md \
|
|
||||||
vips-operators.cpp \
|
|
||||||
Doxyfile.in \
|
Doxyfile.in \
|
||||||
gen-operators.py
|
gen-operators.py \
|
||||||
|
meson.build \
|
||||||
|
README.md \
|
||||||
|
vips-operators.cpp
|
||||||
|
|
||||||
|
@ -6,6 +6,9 @@ pkginclude_HEADERS = \
|
|||||||
VConnection8.h \
|
VConnection8.h \
|
||||||
vips8
|
vips8
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
meson.build
|
||||||
|
|
||||||
vips-operators:
|
vips-operators:
|
||||||
echo "// headers for vips operations" > vips-operators; \
|
echo "// headers for vips operations" > vips-operators; \
|
||||||
echo "// paste this file into VImage8.h, do not leave in repo" > vips-operators; \
|
echo "// paste this file into VImage8.h, do not leave in repo" > vips-operators; \
|
||||||
|
@ -181,8 +181,9 @@ include gtk-doc.make
|
|||||||
# e.g. EXTRA_DIST += version.xml.in
|
# e.g. EXTRA_DIST += version.xml.in
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
${markdown_content_files} \
|
${markdown_content_files} \
|
||||||
|
gen-function-list.py \
|
||||||
images \
|
images \
|
||||||
gen-function-list.py
|
meson.build
|
||||||
|
|
||||||
# Files not to distribute
|
# Files not to distribute
|
||||||
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
|
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
|
||||||
|
@ -28,4 +28,5 @@ noinst_LIBRARIES = $(FUZZLIBS)
|
|||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(TESTS) \
|
$(TESTS) \
|
||||||
common_fuzzer_corpus
|
common_fuzzer_corpus \
|
||||||
|
meson.build
|
||||||
|
@ -62,7 +62,8 @@ libvips_la_LDFLAGS = \
|
|||||||
-version-info @LIBRARY_CURRENT@:@LIBRARY_REVISION@:@LIBRARY_AGE@
|
-version-info @LIBRARY_CURRENT@:@LIBRARY_REVISION@:@LIBRARY_AGE@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(OPTIONAL_DIST_DIR)
|
$(OPTIONAL_DIST_DIR) \
|
||||||
|
meson.build
|
||||||
|
|
||||||
CLEANFILES =
|
CLEANFILES =
|
||||||
|
|
||||||
|
@ -48,3 +48,5 @@ libarithmetic_la_SOURCES = \
|
|||||||
round.c
|
round.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -44,6 +44,7 @@ profiles.c:
|
|||||||
./wrap-profiles.sh profiles profiles.c
|
./wrap-profiles.sh profiles profiles.c
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
meson.build \
|
||||||
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@
|
||||||
|
@ -52,3 +52,5 @@ AM_CPPFLAGS = \
|
|||||||
@VIPS_CFLAGS@ @VIPS_INCLUDES@ \
|
@VIPS_CFLAGS@ @VIPS_INCLUDES@ \
|
||||||
-Wno-unknown-pragmas
|
-Wno-unknown-pragmas
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
|
||||||
|
@ -20,3 +20,5 @@ libconvolution_la_SOURCES = \
|
|||||||
gaussblur.c
|
gaussblur.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -36,3 +36,5 @@ libcreate_la_SOURCES = \
|
|||||||
zone.c
|
zone.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -97,3 +97,5 @@ AM_CPPFLAGS = \
|
|||||||
@VIPS_CFLAGS@ \
|
@VIPS_CFLAGS@ \
|
||||||
@VIPS_INCLUDES@ \
|
@VIPS_INCLUDES@ \
|
||||||
-DVIPS_DISABLE_DEPRECATION_WARNINGS
|
-DVIPS_DISABLE_DEPRECATION_WARNINGS
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -14,3 +14,5 @@ libdraw_la_SOURCES = \
|
|||||||
draw_smudge.c
|
draw_smudge.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -94,3 +94,5 @@ libforeign_la_SOURCES += openslideload.c
|
|||||||
endif # !OPENSLIDE_MODULE
|
endif # !OPENSLIDE_MODULE
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -11,9 +11,10 @@ libnsgif_la_SOURCES = $(MY_SOURCES)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
README-ns.md \
|
meson.build \
|
||||||
README.md \
|
|
||||||
patches \
|
patches \
|
||||||
|
README.md \
|
||||||
|
README-ns.md \
|
||||||
update.sh
|
update.sh
|
||||||
|
|
||||||
if !ENABLE_NSGIF
|
if !ENABLE_NSGIF
|
||||||
|
@ -10,3 +10,5 @@ libfreqfilt_la_SOURCES = \
|
|||||||
phasecor.c
|
phasecor.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -19,3 +19,5 @@ libhistogram_la_SOURCES = \
|
|||||||
stdif.c
|
stdif.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -49,7 +49,13 @@ pkginclude_HEADERS = \
|
|||||||
|
|
||||||
nodist_pkginclude_HEADERS = version.h
|
nodist_pkginclude_HEADERS = version.h
|
||||||
|
|
||||||
EXTRA_DIST = version.h.in internal.h enumtemplate
|
EXTRA_DIST = \
|
||||||
|
enumtemplate \
|
||||||
|
enumtypes.c.in \
|
||||||
|
enumtypes.h.in \
|
||||||
|
internal.h \
|
||||||
|
meson.build \
|
||||||
|
version.h.in
|
||||||
|
|
||||||
# the headers we scan for enums etc.
|
# the headers we scan for enums etc.
|
||||||
# keep in sync with ${top_srcdir}/libvips/iofuncs/Makefile.am
|
# keep in sync with ${top_srcdir}/libvips/iofuncs/Makefile.am
|
||||||
|
@ -51,8 +51,9 @@ vipsmarshal.c: vipsmarshal.list
|
|||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
enumtemplate \
|
enumtemplate \
|
||||||
vipsmarshal.h \
|
meson.build \
|
||||||
vipsmarshal.c \
|
vipsmarshal.c \
|
||||||
|
vipsmarshal.h \
|
||||||
vipsmarshal.list
|
vipsmarshal.list
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
@ -81,3 +82,4 @@ vips_scan_headers = \
|
|||||||
|
|
||||||
enumtypes.c: $(vips_scan_headers) Makefile.am
|
enumtypes.c: $(vips_scan_headers) Makefile.am
|
||||||
glib-mkenums --template ${top_srcdir}/libvips/iofuncs/enumtemplate $(vips_scan_headers) > enumtypes.c
|
glib-mkenums --template ${top_srcdir}/libvips/iofuncs/enumtemplate $(vips_scan_headers) > enumtypes.c
|
||||||
|
|
||||||
|
@ -10,3 +10,5 @@ libmorphology_la_SOURCES = \
|
|||||||
labelregions.c
|
labelregions.c
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -24,3 +24,5 @@ libmosaicing_la_SOURCES = \
|
|||||||
pmosaicing.h
|
pmosaicing.h
|
||||||
|
|
||||||
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
|
||||||
|
EXTRA_DIST = meson.build
|
||||||
|
@ -22,7 +22,8 @@ libresample_la_SOURCES = \
|
|||||||
templates.h
|
templates.h
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
dummy2.cc
|
dummy2.cc \
|
||||||
|
meson.build
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libresample.la
|
noinst_LTLIBRARIES = libresample.la
|
||||||
|
|
||||||
|
@ -9,4 +9,4 @@ man_MANS = \
|
|||||||
vipsprofile.1 \
|
vipsprofile.1 \
|
||||||
vipsthumbnail.1
|
vipsthumbnail.1
|
||||||
|
|
||||||
EXTRA_DIST = ${man_MANS}
|
EXTRA_DIST = ${man_MANS} meson.build
|
||||||
|
@ -26,15 +26,16 @@ AM_LDFLAGS = @LDFLAGS@
|
|||||||
LDADD = @VIPS_CFLAGS@ ${top_builddir}/libvips/libvips.la @VIPS_LIBS@
|
LDADD = @VIPS_CFLAGS@ ${top_builddir}/libvips/libvips.la @VIPS_LIBS@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
variables.sh.in \
|
meson.build \
|
||||||
test_cli.sh \
|
test_cli.sh \
|
||||||
test_descriptors.sh \
|
|
||||||
test_connections.sh \
|
test_connections.sh \
|
||||||
|
test_descriptors.sh \
|
||||||
test_formats.sh \
|
test_formats.sh \
|
||||||
test_seq.sh \
|
test_seq.sh \
|
||||||
test_thumbnail.sh \
|
|
||||||
test_stall.sh \
|
test_stall.sh \
|
||||||
test_threading.sh
|
test_threading.sh \
|
||||||
|
test_thumbnail.sh \
|
||||||
|
variables.sh.in
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
-rm -rf tmp-*
|
-rm -rf tmp-*
|
||||||
|
@ -23,13 +23,14 @@ bin_SCRIPTS = \
|
|||||||
vips-8.13
|
vips-8.13
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
vipsprofile \
|
batch_crop.in \
|
||||||
vips-8.13 \
|
|
||||||
light_correct.in \
|
|
||||||
shrink_width.in \
|
|
||||||
batch_image_convert.in \
|
batch_image_convert.in \
|
||||||
batch_rubber_sheet.in \
|
batch_rubber_sheet.in \
|
||||||
batch_crop.in
|
light_correct.in \
|
||||||
|
meson.build \
|
||||||
|
shrink_width.in \
|
||||||
|
vips-8.13 \
|
||||||
|
vipsprofile
|
||||||
|
|
||||||
install-exec-hook:
|
install-exec-hook:
|
||||||
chmod ugo+x ${DESTDIR}${bindir}/light_correct
|
chmod ugo+x ${DESTDIR}${bindir}/light_correct
|
||||||
|
Loading…
Reference in New Issue
Block a user