Nginx with Rails Way book

I have been trying to install the software listed in chapter 20 in the
Rails Way book (awesome read, btw)…
everything has been good up until setting up nginx. Below is where I
get stuck. I am running leopard (os x).

Macintosh:nginx-0.3.60 veyron$ make
make -f objs/Makefile
gcc -c -O -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Wno-
unused-function -Wunused-variable -Wunused-value -Werror -g -I src/
core -I src/event -I src/event/modules -I src/os/unix -I objs
-o objs/src/core/nginx.o
src/core/nginx.c

…many more errors like this follow…

any ideas?

peri wrote:

core -I src/event -I src/event/modules -I src/os/unix -I objs
-o objs/src/core/nginx.o
src/core/nginx.c

…many more errors like this follow…

any ideas?

This is the normal output from make. It’ll use the word “error” if there
is an error.

-eric