summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2018-03-24 19:37:51 +0100
committerGuillem Jover <guillem@debian.org>2018-03-25 05:45:47 +0200
commit0d9c18d163ca37ef4c0c2127f8ec901f721d1473 (patch)
treecd970cabed5a78c7dc258c441d2d8d1daad30577 /debian
parent1e892d4e03cc396bd84e7f478d9cba77bfa40c70 (diff)
downloaddpkg-0d9c18d163ca37ef4c0c2127f8ec901f721d1473.tar.gz
libcompat: Convert md5 module to use C99 int types
In commit 1f4d0354fc4a8c80c6463b9aaebd93822247341b we opted to map the BSD int types to the C99 to avoid modifying the imported code. But we had to modify it anyway, those types are legacy and we require the C99 ones for the rest of the codebase. So let's just switch to them, and get rid of the type compatibility mapping.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog2
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index d23a352c7..15e135548 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -44,6 +44,8 @@ dpkg (1.19.1) UNRELEASED; urgency=medium
* 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.
+ - Convert libcompat md5 module to use C99 int types, instead of mapping
+ them from the BSD types at configure time.
* Perl modules:
- Check that $tarname is defined before use in Dpkg::Source::Package::V1.
Thanks to Christoph Biedl <debian.axhn@manchmal.in-ulm.de>.