> Looks like there are currently multiple issues in the build system when > using openbsd. > > Go back do dev19, install gmake and compile with: > $ gmake TARGET=openbsd CPU=native USE_ZLIB=1
Actually, you can stick to dev22 as long as you use gmake instead of make. The issue that caused the build failure in dev22 was fixed [1], but is irrelevant when you use gmake. There is another issue with building under OpenBSD, but only when you are using git and it can worked around by defining IGNOREGIT=1 $ gmake clean; gmake TARGET=openbsd CPU=native USE_ZLIB=1 IGNOREGIT=1 I guess you don't use git so you probably didn't hit this problem. Remember to "gmake clean" (or "make -f Makefile.bsd clean") before you build to cleanup old files. Regards, Lukas [1] http://haproxy.1wt.eu/git?p=haproxy.git;a=commit;h=01193d6efbb731dd83eeb9addc14cecb16c431af

