CVS commit: src/usr.bin/ldd

2023-01-03 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Jan 4 03:33:54 UTC 2023 Modified Files: src/usr.bin/ldd: ldd.c Log Message: avoid printing the latest error message if some ldd method worked. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/usr.bin/ldd/ldd.c

CVS commit: src/usr.bin/ldd

2023-01-03 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Jan 4 03:33:54 UTC 2023 Modified Files: src/usr.bin/ldd: ldd.c Log Message: avoid printing the latest error message if some ldd method worked. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/usr.bin/ldd/ldd.c

re: CVS commit: src/usr.bin/ldd

2022-10-25 Thread Ryo ONODERA
Hi, matthew green writes: >> With this change, ldd /lib/libc.so.12.220 fails under NetBSD/amd64 9.99.101. >> >> >> /lib/libc.so.12.220: >> ldd: /lib/libc.so.12.220: invalid ELF class 2, expected 1 >> >> It seems that elf32_ldd() fails. >> >> Builds of some pkgsrc packages that use gobject intros

re: CVS commit: src/usr.bin/ldd

2022-10-18 Thread matthew green
> With this change, ldd /lib/libc.so.12.220 fails under NetBSD/amd64 9.99.101. > > > /lib/libc.so.12.220: > ldd: /lib/libc.so.12.220: invalid ELF class 2, expected 1 > > It seems that elf32_ldd() fails. > > Builds of some pkgsrc packages that use gobject introspection and meson fails > because they

CVS commit: src/usr.bin/ldd

2022-10-18 Thread matthew green
Module Name:src Committed By: mrg Date: Tue Oct 18 19:04:57 UTC 2022 Modified Files: src/usr.bin/ldd: ldd.c Log Message: only try the other methods if the previous ones failed. fixes problem reported by ryoon@ To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.2

CVS commit: src/usr.bin/ldd

2022-10-18 Thread matthew green
Module Name:src Committed By: mrg Date: Tue Oct 18 19:04:57 UTC 2022 Modified Files: src/usr.bin/ldd: ldd.c Log Message: only try the other methods if the previous ones failed. fixes problem reported by ryoon@ To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.2

Re: CVS commit: src/usr.bin/ldd

2022-10-18 Thread Ryo ONODERA
Hi, With this change, ldd /lib/libc.so.12.220 fails under NetBSD/amd64 9.99.101. /lib/libc.so.12.220: ldd: /lib/libc.so.12.220: invalid ELF class 2, expected 1 It seems that elf32_ldd() fails. Builds of some pkgsrc packages that use gobject introspection and meson fails because they uses ldd c

CVS commit: src/usr.bin/ldd

2022-10-14 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Oct 15 05:55:46 UTC 2022 Modified Files: src/usr.bin/ldd: ldd.1 ldd.c Log Message: ldd(1): add a -v option to display all errors not just the latest. ldd on a go binary currently fails with an error that basically says "not elf3

CVS commit: src/usr.bin/ldd

2022-10-14 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Oct 15 05:55:46 UTC 2022 Modified Files: src/usr.bin/ldd: ldd.1 ldd.c Log Message: ldd(1): add a -v option to display all errors not just the latest. ldd on a go binary currently fails with an error that basically says "not elf3

Re: CVS commit: src/usr.bin/ldd

2018-06-22 Thread Kamil Rytarowski
On 22.06.2018 15:38, matthew green wrote: > "Kamil Rytarowski" writes: >> Module Name: src >> Committed By:kamil >> Date:Thu Jun 21 10:41:46 UTC 2018 >> >> Modified Files: >> src/usr.bin/ldd/build: Makefile >> src/usr.bin/ldd/elf32: Makefile >> src/usr.bin/ldd

re: CVS commit: src/usr.bin/ldd

2018-06-22 Thread matthew green
"Kamil Rytarowski" writes: > Module Name: src > Committed By: kamil > Date: Thu Jun 21 10:41:46 UTC 2018 > > Modified Files: > src/usr.bin/ldd/build: Makefile > src/usr.bin/ldd/elf32: Makefile > src/usr.bin/ldd/elf32_compat: Makefile > src/usr.bin/ldd/elf64: Makefi

CVS commit: src/usr.bin/ldd

2010-02-27 Thread Roy Marples
Module Name:src Committed By: roy Date: Sat Feb 27 11:17:05 UTC 2010 Modified Files: src/usr.bin/ldd: ldd.c Log Message: Sync against new ld.elf_so To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/usr.bin/ldd/ldd.c Please note that diffs are not public

CVS commit: src/usr.bin/ldd

2010-02-27 Thread Roy Marples
Module Name:src Committed By: roy Date: Sat Feb 27 11:17:05 UTC 2010 Modified Files: src/usr.bin/ldd: ldd.c Log Message: Sync against new ld.elf_so To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/usr.bin/ldd/ldd.c Please note that diffs are not public

CVS commit: src/usr.bin/ldd

2010-02-23 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Tue Feb 23 08:23:24 UTC 2010 Modified Files: src/usr.bin/ldd: ldd.c Log Message: Mark each object as printed as visited and then print. Fixes PR/48211. As a side effect the libraries are printed in, imo, a better order. To gene