diff options
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | lib/compat/Makefile.am | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index a85f2f464..d23a352c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -41,6 +41,9 @@ dpkg (1.19.1) UNRELEASED; urgency=medium * Architecture support: - Add support for riscv64 CPU. Closes: #822914 Thanks to Manuel A. Fernandez Montecelo <mafm@debian.org> + * Portability: + - Add libcompat md5 module to the libcompat-test library, so that we + always make sure it builds, even when we use an external implementation. * Perl modules: - Check that $tarname is defined before use in Dpkg::Source::Package::V1. Thanks to Christoph Biedl <debian.axhn@manchmal.in-ulm.de>. diff --git a/lib/compat/Makefile.am b/lib/compat/Makefile.am index 1d5840a25..19ddcef86 100644 --- a/lib/compat/Makefile.am +++ b/lib/compat/Makefile.am @@ -10,6 +10,7 @@ noinst_LTLIBRARIES = libcompat-test.la libcompat.la libcompat_test_la_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_LIBCOMPAT=1 libcompat_test_la_SOURCES = \ compat.h \ + md5.c md5.h \ strnlen.c \ strndup.c \ strsignal.c \ |