comparison auto/sources @ 266:5238e93961a1

nginx-0.0.2-2004-02-23-23:57:12 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 23 Feb 2004 20:57:12 +0000
parents 5dacbb4daaf6
children 83205e0b5522
comparison
equal deleted inserted replaced
265:6468241715e6 266:5238e93961a1
3 3
4 CORE_INCS="-I src/core" 4 CORE_INCS="-I src/core"
5 5
6 CORE_DEPS="src/core/nginx.h \ 6 CORE_DEPS="src/core/nginx.h \
7 src/core/ngx_config.h \ 7 src/core/ngx_config.h \
8 src/core/ngx_core.h \
8 src/core/ngx_atomic.h \ 9 src/core/ngx_atomic.h \
9 src/core/ngx_log.h \ 10 src/core/ngx_log.h \
10 src/core/ngx_alloc.h \ 11 src/core/ngx_alloc.h \
11 src/core/ngx_array.h \ 12 src/core/ngx_array.h \
12 src/core/ngx_table.h \ 13 src/core/ngx_table.h \
96 src/os/unix/ngx_time.h \ 97 src/os/unix/ngx_time.h \
97 src/os/unix/ngx_types.h \ 98 src/os/unix/ngx_types.h \
98 src/os/unix/ngx_errno.h \ 99 src/os/unix/ngx_errno.h \
99 src/os/unix/ngx_files.h \ 100 src/os/unix/ngx_files.h \
100 src/os/unix/ngx_process.h \ 101 src/os/unix/ngx_process.h \
102 src/os/unix/ngx_thread.h \
101 src/os/unix/ngx_socket.h \ 103 src/os/unix/ngx_socket.h \
102 src/os/unix/ngx_os.h" 104 src/os/unix/ngx_os.h"
103 105
104 UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ 106 UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
105 src/os/unix/ngx_time.c \ 107 src/os/unix/ngx_time.c \
115 src/os/unix/ngx_daemon.c" 117 src/os/unix/ngx_daemon.c"
116 118
117 FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h 119 FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h
118 FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c 120 FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
119 FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c 121 FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
120 122 FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c"
121 123
122 LINUX_DEPS=src/os/unix/ngx_linux_config.h 124 LINUX_DEPS=src/os/unix/ngx_linux_config.h
123 LINUX_SRCS=src/os/unix/ngx_linux_init.c 125 LINUX_SRCS=src/os/unix/ngx_linux_init.c
124 LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c 126 LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
125 127