> > this is wrong, in OpenBSD, the libs are named libFOO.so.VERSION, > > not libFOO-version > > > > The below patch should correct that.
Did you test it? It seems not: ../../bin/tidy -xml-help > ../../htmldoc/tidy-help.xml ../../bin/tidy: can't load library 'libtidy.so.1.0' gmake: *** [../../htmldoc/tidy-help.xml] Error 4 *** Error code 2 I was just looking at that, and the problem is that the tidy binary is linked w/ libtidy - before it was linking statically, when the shared lib has the proper name it links against it. During fake, the Makefile calls the binary from the wrong location (work area, not fake). The makefile needs to be fixed to work with fake which is a bit of a pain.