This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch master in repository wine.
commit de2ecf57e13874fa5c242402d4eda2001e3bc552 Author: Jens Reyer <[email protected]> Date: Sun May 29 17:42:03 2016 +0200 Add sonames2elf script by Jakub Wilk. This creates an ELF that depends on a given list of sonames. This may be used with dpkg-shlibdeps to calculate dependencies of libraries that are only used with dlopen. Origin: https://lists.debian.org/debian-mentors/2016/05/msg00698.html --- debian/scripts/sonames2elf | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/debian/scripts/sonames2elf b/debian/scripts/sonames2elf new file mode 100755 index 0000000..651fed5 --- /dev/null +++ b/debian/scripts/sonames2elf @@ -0,0 +1,13 @@ +#!/bin/sh +set -e -u +if [ $# = 0 ] || tty <&1 >/dev/null +then + printf 'Usage: %s SONAME... > ELF\n' "$0" + exit 1 +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 +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
