Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-03-03 00:14:37 +0300
committerIgor Sysoev <igor@sysoev.ru>2004-03-03 00:14:37 +0300
commitea17edc917ce07ceff023c304e29b2dad40718c4 (patch)
treed5e059d98afb1595bcd12effa90cc87a7a5ba065 /auto
parentea0b1d973c975d8f61aad1198ae391e8eba1c8b9 (diff)
nginx-0.0.2-2004-03-03-00:14:37 import
Diffstat (limited to 'auto')
-rw-r--r--auto/cc8
-rw-r--r--auto/sources3
2 files changed, 6 insertions, 5 deletions
diff --git a/auto/cc b/auto/cc
index dc1d8809d..6d901162e 100644
--- a/auto/cc
+++ b/auto/cc
@@ -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"