On 01/19/12 20:54, Jason Tubnor wrote:
Hi,For the wget pkg maintainer: The current build of wget in the snapshots package tree will not install on a snapshots system. I'm using: OpenBSD 5.1-beta (GENERIC.MP) #183: Tue Jan 17 15:39:49 MST 2012 [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP To replicate: Install current snapshot ISO to amd64 system and then perform pkg_add wget-1.13-4 Issue: libc.so is the incorrect major number. Wget in the tree is built using libc.so.61.0, current snapshot base is libc.so.62.0 Workaround: Symbolic link to the current libc.so old major can be detected cd /usr/lib ln -s libc.so.62.0 libc.so.61.0
This happens from time to time. When a major library like libc is changed, snapshots ARE going to be out of sync, unless the package builder coordinates their src tree with the latest changes. The best thing to do is compile wget yourself. It's a pretty tiny program. Your kludge of symbolic linking works, except it's like relighting a dud firecracker: you don't know if its going to go off, or not as you are handling it. --STeve Andre'
