diff options
Diffstat (limited to 'auto')
| -rw-r--r-- | auto/cc | 8 | ||||
| -rw-r--r-- | auto/sources | 3 |
2 files changed, 6 insertions, 5 deletions
@@ -6,9 +6,9 @@ case $CC in # optimization #CFLAGS="$CFLAGS -O2 -fomit-frame-pointer" # optimize for Pentium Pro, Pentium II and Pentium III - CFLAGS="$CFLAGS -mcpu=pentiumpro" + #CFLAGS="$CFLAGS -march=pentiumpro" # optimize for Pentium 4, gcc 3.x - #CFLAGS="$CFLAGS -mcpu=pentium4" + #CFLAGS="$CFLAGS -march=pentium4" # warnings CFLAGS="$CFLAGS -O -W" @@ -44,9 +44,9 @@ case $CC in # optimization CFLAGS="$CFLAGS -O" # optimize for Pentium Pro, Pentium II and Pentium III - CFLAGS="$CFLAGS -mcpu=pentiumpro" + CFLAGS="$CFLAGS -mcpu=pentiumpro -march=pentiumpro" # optimize for Pentium 4, default - #CFLAGS="$CFLAGS -mcpu=pentium4" + #CFLAGS="$CFLAGS -march=pentium4" # warnings CFLAGS="$CFLAGS -w1" diff --git a/auto/sources b/auto/sources index f6fdcc08c..c30c9a6e0 100644 --- a/auto/sources +++ b/auto/sources @@ -52,12 +52,13 @@ EVENT_INCS="-I src/event -I src/event/modules" EVENT_DEPS="src/event/ngx_event.h \ src/event/ngx_event_timer.h \ + src/event/ngx_event_busy_lock.h \ src/event/ngx_event_connect.h \ src/event/ngx_event_pipe.h" EVENT_SRCS="src/event/ngx_event.c \ src/event/ngx_event_timer.c \ - src/event/ngx_event_mutex.c \ + src/event/ngx_event_busy_lock.c \ src/event/ngx_event_accept.c \ src/event/ngx_event_connect.c \ src/event/ngx_event_pipe.c" |
