On 8/12/2016 5:34 AM, NightStrike wrote:
On Thu, Aug 11, 2016 at 2:05 AM, dw <[email protected]> wrote:
I have been told that "autoreconf -fiv" regenerates all the files using
the current version. But after seeing the dozen files it changed and
realizing I didn't actually know what any of them were, I chickened out.
If there's something I can do to help, let me know.
Yes, that's all that is required (other than testing). I used to use
"make distcheck" to test things, but I don't know if that still works.
You can certainly try doing that before and after in each sub project.
The thing with make distcheck is that it verifies that every
distributable file is accounted for in the build system, which isn't
always the case. If you feel like trying that, and you get errors,
let me know.
So, I have finally gotten back to this.
To recap: My goal is to make sure all the generated files are in sync
with each other (for example Makefile.in should be generated by the same
version of autoconf/automake as aclocal.m4).
As nightstrike suggested, I have tried doing "make distcheck" before
changing anything to find any existing problems. This produced a BUNCH
of failures. They all come from EXTRA_DIST in mingw-w64-crt/Makefile.am
and fall into 2 categories:
1) The paths for the math/DFP stuff are totally messed up. Directory
names include a version number (2.3) which our tree has removed, some
directory names have changed (s/cmd/examples) and some have been
re-orged (mpdecimal-2.3/fnt.c -> mpdecimal/libmpdec/fnt.c). I think I
have fixed all these.
2) There are currently 69 files listed that don't appear in our tree (I
don't see them being generated either). I have moved all of the missing
files from EXTRA_DIST to FILES_DONT_EXIST in the attached patch to keep
distcheck from complaining. Also note the 27 files I've added to
SKIPPED_FILES that *are* in our tree, but *aren't* currently listed in
EXTRA_DIST.
Arguably both SKIPPED_FILES and FILES_DONT_EXIST should be removed from
this file before being pushed. They serve no purpose other than as
documentation of something I don't understand. Unless someone tells me
a better use for them (like moving all of SKIPPED_FILES into
EXTRA_DIST?). I could really use some guidance here.
Other than this, the regen seems to be working fine. But I want to fix
this DFP stuff first. Help?
dw
diff --git a/mingw-w64-crt/Makefile.am b/mingw-w64-crt/Makefile.am
index 886fcf0..2dc1678 100644
--- a/mingw-w64-crt/Makefile.am
+++ b/mingw-w64-crt/Makefile.am
@@ -1512,188 +1512,222 @@ EXTRA_DIST += revstamp.h \
profile/COPYING \
profile/CYGWIN_LICENSE
-EXTRA_DIST += math/DFP/mpdecimal-2.3/.hg_archival.txt \
-math/DFP/mpdecimal-2.3/basearith.c \
-math/DFP/mpdecimal-2.3/basearith.h \
-math/DFP/mpdecimal-2.3/bench.c \
-math/DFP/mpdecimal-2.3/bits.h \
-math/DFP/mpdecimal-2.3/cdecimal2.c \
-math/DFP/mpdecimal-2.3/cdecimal3.c \
-math/DFP/mpdecimal-2.3/CHANGELOG.txt \
-math/DFP/mpdecimal-2.3/cmd/compare.c \
-math/DFP/mpdecimal-2.3/cmd/div.c \
-math/DFP/mpdecimal-2.3/cmd/divmod.c \
-math/DFP/mpdecimal-2.3/cmd/multiply.c \
-math/DFP/mpdecimal-2.3/cmd/pow.c \
-math/DFP/mpdecimal-2.3/cmd/powmod.c \
-math/DFP/mpdecimal-2.3/cmd/README.txt \
-math/DFP/mpdecimal-2.3/cmd/shift.c \
-math/DFP/mpdecimal-2.3/cmd/sqrt.c \
-math/DFP/mpdecimal-2.3/config.h.in \
-math/DFP/mpdecimal-2.3/configure \
-math/DFP/mpdecimal-2.3/configure.in \
-math/DFP/mpdecimal-2.3/constants.c \
-math/DFP/mpdecimal-2.3/constants.h \
-math/DFP/mpdecimal-2.3/context.c \
-math/DFP/mpdecimal-2.3/convolute.c \
-math/DFP/mpdecimal-2.3/convolute.h \
-math/DFP/mpdecimal-2.3/crt.c \
-math/DFP/mpdecimal-2.3/crt.h \
-math/DFP/mpdecimal-2.3/difradix2.c \
-math/DFP/mpdecimal-2.3/difradix2.h \
-math/DFP/mpdecimal-2.3/doc/cdecimal/index.html \
-math/DFP/mpdecimal-2.3/doc/index.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/arithmetic.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/assign-convert.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/attributes.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/context.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/decimals.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/functions.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/index.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/memory.html \
-math/DFP/mpdecimal-2.3/doc/libmpdec/various.html \
-math/DFP/mpdecimal-2.3/doc/LICENSE.txt \
-math/DFP/mpdecimal-2.3/doc/objects.inv \
-math/DFP/mpdecimal-2.3/doc/search.html \
-math/DFP/mpdecimal-2.3/doc/searchindex.js \
-math/DFP/mpdecimal-2.3/doc/_static/basic.css \
-math/DFP/mpdecimal-2.3/doc/_static/default.css \
-math/DFP/mpdecimal-2.3/doc/_static/doctools.js \
-math/DFP/mpdecimal-2.3/doc/_static/file.png \
-math/DFP/mpdecimal-2.3/doc/_static/jquery.js \
-math/DFP/mpdecimal-2.3/doc/_static/minus.png \
-math/DFP/mpdecimal-2.3/doc/_static/mpdecimal-doc.css \
-math/DFP/mpdecimal-2.3/doc/_static/plus.png \
-math/DFP/mpdecimal-2.3/doc/_static/pygments.css \
-math/DFP/mpdecimal-2.3/doc/_static/searchtools.js \
-math/DFP/mpdecimal-2.3/doc/_static/sidebar.js \
-math/DFP/mpdecimal-2.3/doc/_static/underscore.js \
-math/DFP/mpdecimal-2.3/docstrings.h \
-math/DFP/mpdecimal-2.3/fnt.c \
-math/DFP/mpdecimal-2.3/fnt.h \
-math/DFP/mpdecimal-2.3/fourstep.c \
-math/DFP/mpdecimal-2.3/fourstep.h \
-math/DFP/mpdecimal-2.3/io.c \
-math/DFP/mpdecimal-2.3/io.h \
-math/DFP/mpdecimal-2.3/LIBINSTALL.txt \
-math/DFP/mpdecimal-2.3/LICENSE.txt \
-math/DFP/mpdecimal-2.3/literature/mpdecimal.lisp \
-math/DFP/mpdecimal-2.3/literature/README.txt \
-math/DFP/mpdecimal-2.3/literature/umodarith.lisp \
-math/DFP/mpdecimal-2.3/Makefile.in \
-math/DFP/mpdecimal-2.3/Makefile.vc \
-math/DFP/mpdecimal-2.3/memory.c \
-math/DFP/mpdecimal-2.3/memory.h \
-math/DFP/mpdecimal-2.3/mpdecimal-i686.h \
-math/DFP/mpdecimal-2.3/mpdecimal-x86_64.h \
-math/DFP/mpdecimal-2.3/mpdecimal.c \
-math/DFP/mpdecimal-2.3/mpdecimal.h.in \
-math/DFP/mpdecimal-2.3/mpdecimal32vc.h \
-math/DFP/mpdecimal-2.3/mpdecimal64vc.h \
-math/DFP/mpdecimal-2.3/mpsignal.c \
-math/DFP/mpdecimal-2.3/mptest.h \
-math/DFP/mpdecimal-2.3/mptypes.h \
-math/DFP/mpdecimal-2.3/numbertheory.c \
-math/DFP/mpdecimal-2.3/numbertheory.h \
-math/DFP/mpdecimal-2.3/PKG-INFO \
-math/DFP/mpdecimal-2.3/PYINSTALL.txt \
-math/DFP/mpdecimal-2.3/python/Bench.class \
-math/DFP/mpdecimal-2.3/python/Bench.java \
-math/DFP/mpdecimal-2.3/python/bench.py \
-math/DFP/mpdecimal-2.3/python/BENCHMARK.txt \
-math/DFP/mpdecimal-2.3/python/build_all_branches.bat \
-math/DFP/mpdecimal-2.3/python/build_all_branches.sh \
-math/DFP/mpdecimal-2.3/python/build_all_releases.sh \
-math/DFP/mpdecimal-2.3/python/ctx-deccheck2.py \
-math/DFP/mpdecimal-2.3/python/deccheck2.py \
-math/DFP/mpdecimal-2.3/python/deccheck3.py \
-math/DFP/mpdecimal-2.3/python/failapi2.diff \
-math/DFP/mpdecimal-2.3/python/failapi3.diff \
-math/DFP/mpdecimal-2.3/python/formathelper.py \
-math/DFP/mpdecimal-2.3/python/genlocale.py \
-math/DFP/mpdecimal-2.3/python/genrandformat.py \
-math/DFP/mpdecimal-2.3/python/genrandlocale.py \
-math/DFP/mpdecimal-2.3/python/gettests.bat \
-math/DFP/mpdecimal-2.3/python/gettests.sh \
-math/DFP/mpdecimal-2.3/python/get_all_branches.bat \
-math/DFP/mpdecimal-2.3/python/get_all_branches.sh \
-math/DFP/mpdecimal-2.3/python/get_all_releases.sh \
-math/DFP/mpdecimal-2.3/python/randdec.py \
-math/DFP/mpdecimal-2.3/python/randfloat.py \
-math/DFP/mpdecimal-2.3/python/README.txt \
-math/DFP/mpdecimal-2.3/python/runall-amd64.bat \
-math/DFP/mpdecimal-2.3/python/runall-memorydebugger.sh \
-math/DFP/mpdecimal-2.3/python/runall-refleak.bat \
-math/DFP/mpdecimal-2.3/python/runall-releases.sh \
-math/DFP/mpdecimal-2.3/python/runall-x86.bat \
-math/DFP/mpdecimal-2.3/python/runall.sh \
-math/DFP/mpdecimal-2.3/python/test_cdecimal2.5.py \
-math/DFP/mpdecimal-2.3/python/test_cdecimal2.py \
-math/DFP/mpdecimal-2.3/python/test_cdecimal3.py \
-math/DFP/mpdecimal-2.3/python/valgrind.supp \
-math/DFP/mpdecimal-2.3/README.txt \
-math/DFP/mpdecimal-2.3/setup.py \
-math/DFP/mpdecimal-2.3/sixstep.c \
-math/DFP/mpdecimal-2.3/sixstep.h \
-math/DFP/mpdecimal-2.3/tests/additional.decTest \
-math/DFP/mpdecimal-2.3/tests/cov.c \
-math/DFP/mpdecimal-2.3/tests/covreport.py \
-math/DFP/mpdecimal-2.3/tests/deccheck.c \
-math/DFP/mpdecimal-2.3/tests/dnloop-windows.patch \
-math/DFP/mpdecimal-2.3/tests/dnloop.patch \
-math/DFP/mpdecimal-2.3/tests/fntcov.c \
-math/DFP/mpdecimal-2.3/tests/fullcov_header.patch \
-math/DFP/mpdecimal-2.3/tests/getdn.bat \
-math/DFP/mpdecimal-2.3/tests/getdn.sh \
-math/DFP/mpdecimal-2.3/tests/gettests.bat \
-math/DFP/mpdecimal-2.3/tests/gettests.sh \
-math/DFP/mpdecimal-2.3/tests/karatsuba_fnt.c \
-math/DFP/mpdecimal-2.3/tests/karatsuba_fnt2.c \
-math/DFP/mpdecimal-2.3/tests/Makefile.in \
-math/DFP/mpdecimal-2.3/tests/Makefile.vc \
-math/DFP/mpdecimal-2.3/tests/malloc_fail.c \
-math/DFP/mpdecimal-2.3/tests/malloc_fail.h \
-math/DFP/mpdecimal-2.3/tests/mpd_mpz_add.c \
-math/DFP/mpdecimal-2.3/tests/mpd_mpz_divmod.c \
-math/DFP/mpdecimal-2.3/tests/mpd_mpz_mul.c \
-math/DFP/mpdecimal-2.3/tests/mpd_mpz_sub.c \
-math/DFP/mpdecimal-2.3/tests/official.decTest \
-math/DFP/mpdecimal-2.3/tests/ppro_mulmod.c \
-math/DFP/mpdecimal-2.3/tests/README.txt \
-math/DFP/mpdecimal-2.3/tests/runallconfigs.bat \
-math/DFP/mpdecimal-2.3/tests/runallconfigs.sh \
-math/DFP/mpdecimal-2.3/tests/runalltests.bat \
-math/DFP/mpdecimal-2.3/tests/runalltests.sh \
-math/DFP/mpdecimal-2.3/tests/runshort.bat \
-math/DFP/mpdecimal-2.3/tests/runshort.sh \
-math/DFP/mpdecimal-2.3/tests/runtest.c \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/baseconv.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/binop_eq.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/cov.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/divmod.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/divmod_eq.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/extra.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/fma_eq.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/format.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/getint.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/invroot.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/largeint.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/powmod.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/powmod_eq.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/shiftlr.decTest \
-math/DFP/mpdecimal-2.3/tests/testdata_dist/testruntest.decTest \
-math/DFP/mpdecimal-2.3/tests/test_transpose.c \
-math/DFP/mpdecimal-2.3/tools/release.sh \
-math/DFP/mpdecimal-2.3/tools/replace.sh \
-math/DFP/mpdecimal-2.3/tools/todos.sh \
-math/DFP/mpdecimal-2.3/transpose.c \
-math/DFP/mpdecimal-2.3/transpose.h \
-math/DFP/mpdecimal-2.3/typearith.h \
-math/DFP/mpdecimal-2.3/umodarith.h \
-math/DFP/mpdecimal-2.3/vars.mk \
-math/DFP/mpdecimal-2.3/vccompat.h \
-math/DFP/mpdecimal-2.3/vcdiv64.asm \
-math/DFP/mpdecimal-2.3/vcstdint.h
+EXTRA_DIST += math/DFP/mpdecimal/.hg_archival.txt \
+math/DFP/mpdecimal/CHANGELOG.txt \
+math/DFP/mpdecimal/config.h.in \
+math/DFP/mpdecimal/configure \
+math/DFP/mpdecimal/LICENSE.txt \
+math/DFP/mpdecimal/Makefile.in \
+math/DFP/mpdecimal/README.txt \
+math/DFP/mpdecimal/doc/arithmetic.html \
+math/DFP/mpdecimal/doc/assign-convert.html \
+math/DFP/mpdecimal/doc/attributes.html \
+math/DFP/mpdecimal/doc/context.html \
+math/DFP/mpdecimal/doc/decimals.html \
+math/DFP/mpdecimal/doc/functions.html \
+math/DFP/mpdecimal/doc/index.html \
+math/DFP/mpdecimal/doc/LICENSE.txt \
+math/DFP/mpdecimal/doc/memory.html \
+math/DFP/mpdecimal/doc/objects.inv \
+math/DFP/mpdecimal/doc/search.html \
+math/DFP/mpdecimal/doc/searchindex.js \
+math/DFP/mpdecimal/doc/various.html \
+math/DFP/mpdecimal/doc/_static/basic.css \
+math/DFP/mpdecimal/doc/_static/default.css \
+math/DFP/mpdecimal/doc/_static/doctools.js \
+math/DFP/mpdecimal/doc/_static/file.png \
+math/DFP/mpdecimal/doc/_static/jquery.js \
+math/DFP/mpdecimal/doc/_static/minus.png \
+math/DFP/mpdecimal/doc/_static/mpdecimal-doc.css \
+math/DFP/mpdecimal/doc/_static/plus.png \
+math/DFP/mpdecimal/doc/_static/pygments.css \
+math/DFP/mpdecimal/doc/_static/searchtools.js \
+math/DFP/mpdecimal/doc/_static/sidebar.js \
+math/DFP/mpdecimal/doc/_static/underscore.js \
+math/DFP/mpdecimal/examples/compare.c \
+math/DFP/mpdecimal/examples/div.c \
+math/DFP/mpdecimal/examples/divmod.c \
+math/DFP/mpdecimal/examples/multiply.c \
+math/DFP/mpdecimal/examples/pow.c \
+math/DFP/mpdecimal/examples/powmod.c \
+math/DFP/mpdecimal/examples/README.txt \
+math/DFP/mpdecimal/examples/shift.c \
+math/DFP/mpdecimal/examples/sqrt.c \
+math/DFP/mpdecimal/libmpdec/literature/umodarith.lisp \
+math/DFP/mpdecimal/libmpdec/basearith.c \
+math/DFP/mpdecimal/libmpdec/basearith.h \
+math/DFP/mpdecimal/libmpdec/bench.c \
+math/DFP/mpdecimal/libmpdec/bits.h \
+math/DFP/mpdecimal/libmpdec/constants.c \
+math/DFP/mpdecimal/libmpdec/constants.h \
+math/DFP/mpdecimal/libmpdec/context.c \
+math/DFP/mpdecimal/libmpdec/convolute.c \
+math/DFP/mpdecimal/libmpdec/convolute.h \
+math/DFP/mpdecimal/libmpdec/crt.c \
+math/DFP/mpdecimal/libmpdec/crt.h \
+math/DFP/mpdecimal/libmpdec/difradix2.c \
+math/DFP/mpdecimal/libmpdec/difradix2.h \
+math/DFP/mpdecimal/libmpdec/fnt.c \
+math/DFP/mpdecimal/libmpdec/fnt.h \
+math/DFP/mpdecimal/libmpdec/fourstep.c \
+math/DFP/mpdecimal/libmpdec/fourstep.h \
+math/DFP/mpdecimal/libmpdec/io.c \
+math/DFP/mpdecimal/libmpdec/io.h \
+math/DFP/mpdecimal/libmpdec/Makefile.in \
+math/DFP/mpdecimal/libmpdec/Makefile.vc \
+math/DFP/mpdecimal/libmpdec/memory.c \
+math/DFP/mpdecimal/libmpdec/memory.h \
+math/DFP/mpdecimal/libmpdec/mpdecimal.c \
+math/DFP/mpdecimal/libmpdec/mpdecimal.h.in \
+math/DFP/mpdecimal/libmpdec/mpdecimal32vc.h \
+math/DFP/mpdecimal/libmpdec/mpdecimal64vc.h \
+math/DFP/mpdecimal/libmpdec/mpdecimal-i686.h \
+math/DFP/mpdecimal/libmpdec/mpdecimal-x86_64.h \
+math/DFP/mpdecimal/libmpdec/mpsignal.c \
+math/DFP/mpdecimal/libmpdec/numbertheory.c \
+math/DFP/mpdecimal/libmpdec/numbertheory.h \
+math/DFP/mpdecimal/libmpdec/README.txt \
+math/DFP/mpdecimal/libmpdec/sixstep.c \
+math/DFP/mpdecimal/libmpdec/sixstep.h \
+math/DFP/mpdecimal/libmpdec/transpose.c \
+math/DFP/mpdecimal/libmpdec/transpose.h \
+math/DFP/mpdecimal/libmpdec/typearith.h \
+math/DFP/mpdecimal/libmpdec/umodarith.h \
+math/DFP/mpdecimal/libmpdec/vccompat.h \
+math/DFP/mpdecimal/libmpdec/vcdiv64.asm \
+math/DFP/mpdecimal/libmpdec/vcstdint.h \
+math/DFP/mpdecimal/tests/testdata_dist/baseconv.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/binop_eq.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/cov.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/divmod.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/divmod_eq.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/extra.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/fma_eq.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/format.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/getint.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/invroot.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/largeint.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/powmod.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/powmod_eq.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/shiftlr.decTest \
+math/DFP/mpdecimal/tests/testdata_dist/testruntest.decTest \
+math/DFP/mpdecimal/tests/additional.decTest \
+math/DFP/mpdecimal/tests/gettests.sh \
+math/DFP/mpdecimal/tests/Makefile.in \
+math/DFP/mpdecimal/tests/Makefile.vc \
+math/DFP/mpdecimal/tests/malloc_fail.c \
+math/DFP/mpdecimal/tests/malloc_fail.h \
+math/DFP/mpdecimal/tests/mptest.h \
+math/DFP/mpdecimal/tests/official.decTest \
+math/DFP/mpdecimal/tests/README.txt \
+math/DFP/mpdecimal/tests/runshort.sh \
+math/DFP/mpdecimal/tests/runtest.c \
+math/DFP/mpdecimal/tools/release.sh \
+math/DFP/mpdecimal/tools/replace.sh \
+math/DFP/mpdecimal/tools/todos.sh \
+math/DFP/mpdecimal/vcbuild/gettests.bat
+
+# These files exist, but for some reason are not being copied.
+SKIPPED_FILES = \
+math/DFP/mpdecimal/COMPILERS.txt \
+math/DFP/mpdecimal/configure.ac \
+math/DFP/mpdecimal/INSTALL.txt \
+math/DFP/mpdecimal/install-sh \
+math/DFP/mpdecimal/doc/_static/ajax-loader.gif \
+math/DFP/mpdecimal/doc/_static/comment.png \
+math/DFP/mpdecimal/doc/_static/comment-bright.png \
+math/DFP/mpdecimal/doc/_static/comment-close.png \
+math/DFP/mpdecimal/doc/_static/down.png \
+math/DFP/mpdecimal/doc/_static/down-pressed.png \
+math/DFP/mpdecimal/doc/_static/up.png \
+math/DFP/mpdecimal/doc/_static/up-pressed.png \
+math/DFP/mpdecimal/doc/_static/websupport.js \
+math/DFP/mpdecimal/libmpdec/literature/bignum.txt \
+math/DFP/mpdecimal/libmpdec/literature/fnt.py \
+math/DFP/mpdecimal/libmpdec/literature/matrix-transform.txt \
+math/DFP/mpdecimal/libmpdec/literature/mulmod-64.txt \
+math/DFP/mpdecimal/libmpdec/literature/mulmod-ppro.txt \
+math/DFP/mpdecimal/libmpdec/literature/REFERENCES.txt \
+math/DFP/mpdecimal/libmpdec/literature/six-step.txt \
+math/DFP/mpdecimal/vcbuild/README.txt \
+math/DFP/mpdecimal/vcbuild/runtest32.bat \
+math/DFP/mpdecimal/vcbuild/runtest64.bat \
+math/DFP/mpdecimal/vcbuild/vcbuild32.bat \
+math/DFP/mpdecimal/vcbuild/vcbuild64.bat \
+math/DFP/mpdecimal/vcbuild/vcclean.bat \
+math/DFP/mpdecimal/vcbuild/vcdistclean.bat
+
+# These files don't exist, but used to be included in EXTRA_DIST
+FILES_DONT_EXIST = \
+math/DFP/mpdecimal/configure.in \
+math/DFP/mpdecimal/doc/cdecimal/index.html \
+math/DFP/mpdecimal/docstrings.h \
+math/DFP/mpdecimal/LIBINSTALL.txt \
+math/DFP/mpdecimal/libmpdec/cdecimal2.c \
+math/DFP/mpdecimal/libmpdec/cdecimal3.c \
+math/DFP/mpdecimal/libmpdec/literature/mpdecimal.lisp \
+math/DFP/mpdecimal/libmpdec/literature/README.txt \
+math/DFP/mpdecimal/mptypes.h \
+math/DFP/mpdecimal/PKG-INFO \
+math/DFP/mpdecimal/PYINSTALL.txt \
+math/DFP/mpdecimal/python/Bench.class \
+math/DFP/mpdecimal/python/Bench.java \
+math/DFP/mpdecimal/python/bench.py \
+math/DFP/mpdecimal/python/BENCHMARK.txt \
+math/DFP/mpdecimal/python/build_all_branches.bat \
+math/DFP/mpdecimal/python/build_all_branches.sh \
+math/DFP/mpdecimal/python/build_all_releases.sh \
+math/DFP/mpdecimal/python/ctx-deccheck2.py \
+math/DFP/mpdecimal/python/deccheck2.py \
+math/DFP/mpdecimal/python/deccheck3.py \
+math/DFP/mpdecimal/python/failapi2.diff \
+math/DFP/mpdecimal/python/failapi3.diff \
+math/DFP/mpdecimal/python/formathelper.py \
+math/DFP/mpdecimal/python/genlocale.py \
+math/DFP/mpdecimal/python/genrandformat.py \
+math/DFP/mpdecimal/python/genrandlocale.py \
+math/DFP/mpdecimal/python/get_all_branches.bat \
+math/DFP/mpdecimal/python/get_all_branches.sh \
+math/DFP/mpdecimal/python/get_all_releases.sh \
+math/DFP/mpdecimal/python/gettests.bat \
+math/DFP/mpdecimal/python/gettests.sh \
+math/DFP/mpdecimal/python/randdec.py \
+math/DFP/mpdecimal/python/randfloat.py \
+math/DFP/mpdecimal/python/README.txt \
+math/DFP/mpdecimal/python/runall-amd64.bat \
+math/DFP/mpdecimal/python/runall-memorydebugger.sh \
+math/DFP/mpdecimal/python/runall-refleak.bat \
+math/DFP/mpdecimal/python/runall-releases.sh \
+math/DFP/mpdecimal/python/runall-x86.bat \
+math/DFP/mpdecimal/python/runall.sh \
+math/DFP/mpdecimal/python/test_cdecimal2.5.py \
+math/DFP/mpdecimal/python/test_cdecimal2.py \
+math/DFP/mpdecimal/python/test_cdecimal3.py \
+math/DFP/mpdecimal/python/valgrind.supp \
+math/DFP/mpdecimal/setup.py \
+math/DFP/mpdecimal/tests/cov.c \
+math/DFP/mpdecimal/tests/covreport.py \
+math/DFP/mpdecimal/tests/deccheck.c \
+math/DFP/mpdecimal/tests/dnloop-windows.patch \
+math/DFP/mpdecimal/tests/dnloop.patch \
+math/DFP/mpdecimal/tests/fntcov.c \
+math/DFP/mpdecimal/tests/fullcov_header.patch \
+math/DFP/mpdecimal/tests/getdn.bat \
+math/DFP/mpdecimal/tests/getdn.sh \
+math/DFP/mpdecimal/tests/karatsuba_fnt.c \
+math/DFP/mpdecimal/tests/karatsuba_fnt2.c \
+math/DFP/mpdecimal/tests/mpd_mpz_add.c \
+math/DFP/mpdecimal/tests/mpd_mpz_divmod.c \
+math/DFP/mpdecimal/tests/mpd_mpz_mul.c \
+math/DFP/mpdecimal/tests/mpd_mpz_sub.c \
+math/DFP/mpdecimal/tests/ppro_mulmod.c \
+math/DFP/mpdecimal/tests/runallconfigs.bat \
+math/DFP/mpdecimal/tests/runallconfigs.sh \
+math/DFP/mpdecimal/tests/runalltests.bat \
+math/DFP/mpdecimal/tests/runalltests.sh \
+math/DFP/mpdecimal/tests/runshort.bat \
+math/DFP/mpdecimal/tests/test_transpose.c \
+math/DFP/mpdecimal/vars.mk
DISTCHECK_CONFIGURE_FLAGS = --host=$(host_triplet) $(withsys)
------------------------------------------------------------------------------
_______________________________________________
Mingw-w64-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public