2004-03-02 12:40:59 -03:00
|
|
|
#!/bin/sh
|
2003-11-20 04:05:50 -03:00
|
|
|
|
2003-11-25 17:44:56 -03:00
|
|
|
. auto/options
|
|
|
|
. auto/init
|
|
|
|
. auto/sources
|
2003-11-21 03:30:49 -03:00
|
|
|
|
2004-02-10 13:23:38 -03:00
|
|
|
test -d $OBJS || mkdir $OBJS
|
2004-02-02 18:19:52 -03:00
|
|
|
echo > $NGX_AUTO_CONFIG_H
|
|
|
|
|
2004-03-11 12:42:41 -03:00
|
|
|
if [ $DEBUG = YES ]; then
|
|
|
|
have=NGX_DEBUG . auto/have
|
|
|
|
fi
|
|
|
|
|
|
|
|
have=NGX_USE_HTTP_FILE_CACHE_UNIQ . auto/have
|
|
|
|
have=NGX_SUPPRESS_WARN . auto/have
|
|
|
|
|
|
|
|
|
2004-02-09 04:46:43 -03:00
|
|
|
if [ "$PLATFORM" != win32 ]; then
|
|
|
|
. auto/headers
|
|
|
|
fi
|
|
|
|
|
2003-11-25 17:44:56 -03:00
|
|
|
. auto/os/conf
|
2004-02-02 18:19:52 -03:00
|
|
|
. auto/modules
|
2003-11-20 14:36:43 -03:00
|
|
|
|
2003-11-25 17:44:56 -03:00
|
|
|
. auto/cc
|
2003-12-14 17:10:27 -03:00
|
|
|
. auto/lib/conf
|
2004-02-02 18:19:52 -03:00
|
|
|
|
2004-02-23 17:57:12 -03:00
|
|
|
if [ "$PLATFORM" != win32 ]; then
|
|
|
|
. auto/threads
|
|
|
|
fi
|
|
|
|
|
2003-11-25 17:44:56 -03:00
|
|
|
. auto/make
|
|
|
|
. auto/lib/make
|
2003-11-20 14:36:43 -03:00
|
|
|
|
2003-11-25 17:44:56 -03:00
|
|
|
if [ "$PLATFORM" != win32 ]; then
|
|
|
|
. auto/unix
|
|
|
|
fi
|
2003-12-14 17:10:27 -03:00
|
|
|
|
2004-04-01 12:20:53 -04:00
|
|
|
have=NGX_SMP . auto/have
|
2004-02-23 17:57:12 -03:00
|
|
|
|
2004-05-18 16:28:54 -04:00
|
|
|
have=NGX_PREFIX value="\"$PREFIX/\"" . auto/define
|
|
|
|
have=NGX_SBIN_PATH value="\"$SBIN_PATH\"" . auto/define
|
|
|
|
have=NGX_CONF_PATH value="\"$CONF_PATH\"" . auto/define
|
|
|
|
have=NGX_PID_PATH value="\"$PID_PATH\"" . auto/define
|
|
|
|
have=NGX_ERROR_LOG_PATH value="\"$ERROR_LOG_PATH\"" . auto/define
|
|
|
|
have=NGX_HTTP_LOG_PATH value="\"$HTTP_LOG_PATH\"" . auto/define
|
|
|
|
|
2003-12-14 17:10:27 -03:00
|
|
|
. auto/summary
|