> You should use bsd make with Makefile.bsd provided in HAProxy source > archive or git.
Problem is bsd and osx Makefiles don't support USE flags, so they can't be used to enable zlib, ssl, etc. If using GNU make is not an option, add -lz to ADDLIB in Makefile.bsd (72nd line): ADDLIB = -lz and then compile with the USE flag (so that you workaround the #ifdefs): make -f Makefile.bsd USE_ZLIB=1 Thats should make it work. Regards, Lukas

