I would do it as follows:
( ulimit -p `sysctl -n kern.maxproc` ; /usr/local/etc/httpd/httpd )
That will set the # processes to the max in a subshell which should
get inherited when httpd is spawned so the children spawned from
httpd will have the max limit as well.
- todd