This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch stretch in repository wine.
commit 770a6631aec9d176a95003448647655c7884c233 Author: Jens Reyer <[email protected]> Date: Thu Feb 2 15:04:11 2017 +0100 Create the sonames2elf binary without -nostdlib. Cf. #853793 (dpkg: ABI mismatch detector is too strict on armel/ armhf) This way the ABI should match on armel/armhf, fixing the new ftbfs. The elf binary is *only* used by dpkg-shlibdeps to compute the dependencies on dlopen'ed libraries. --- debian/changelog | 5 +++-- debian/scripts/sonames2elf | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 07dbfa6..35bdd7f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ -wine (1.8.6-5) UNRELEASED; urgency=medium +wine (1.8.6-5) unstable; urgency=medium * Enable oss on kfreebsd, explicitly disable it on other archs. + * Create the sonames2elf binary without -nostdlib (cf. #853793) - -- Jens Reyer <[email protected]> Thu, 02 Feb 2017 13:25:43 +0100 + -- Jens Reyer <[email protected]> Thu, 02 Feb 2017 15:04:27 +0100 wine (1.8.6-4) unstable; urgency=medium diff --git a/debian/scripts/sonames2elf b/debian/scripts/sonames2elf index cdf6c54..6c51a6d 100755 --- a/debian/scripts/sonames2elf +++ b/debian/scripts/sonames2elf @@ -30,6 +30,6 @@ fi tmpdir=$(mktemp -d -t sonames2elf.XXXXXX) cd "$tmpdir" printf 'INPUT(%s)\n' "$@" > libeverything.so -gcc -shared -nostdlib -Wl,--no-as-needed -L. -leverything -o elf +gcc -shared -Wl,--no-as-needed -L. -leverything -o elf cat elf rm -rf "$tmpdir" -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git _______________________________________________ pkg-wine-party mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-wine-party
