Hello-
Tried using bootstrap on OpenBSD. It worked fairly well. But since OpenBSD doesn't have an sha1sum package, you can fake it with the following script. -- #!/bin/sh if test "x$1" = "x--version"; then echo "sha1sum (fake) 0.0"; exit 0; else sha1 -r $1; fi -- Thanks, -Mike Gran