mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
nginx-0.0.10-2004-09-14-09:45:22 import
This commit is contained in:
parent
0292cbbe35
commit
562626ae6c
12
auto/options
12
auto/options
@ -161,6 +161,18 @@ if [ $help = yes ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [ $HTTP = NO ]; then
|
||||||
|
HTTP_CHARSET=NO
|
||||||
|
HTTP_GZIP=NO
|
||||||
|
HTTP_SSI=NO
|
||||||
|
HTTP_USERID=NO
|
||||||
|
HTTP_ACCESS=NO
|
||||||
|
HTTP_STATUS=NO
|
||||||
|
HTTP_REWRITE=NO
|
||||||
|
HTTP_PROXY=NO
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ ".$PLATFORM" = ".win32" -a $EVENT_POLL = YES ]; then
|
if [ ".$PLATFORM" = ".win32" -a $EVENT_POLL = YES ]; then
|
||||||
EVENT_POLL=NO
|
EVENT_POLL=NO
|
||||||
echo "$0: warning: --with-poll_module option is ignored for win32"
|
echo "$0: warning: --with-poll_module option is ignored for win32"
|
||||||
|
44
auto/summary
44
auto/summary
@ -8,32 +8,32 @@ if [ $USE_PCRE = DISABLED ]; then
|
|||||||
|
|
||||||
else
|
else
|
||||||
case $PCRE in
|
case $PCRE in
|
||||||
YES) echo " + using system PCRE library" ;;
|
YES) echo " using system PCRE library" ;;
|
||||||
NONE) echo " + PCRE library is not used" ;;
|
NONE) echo " PCRE library is not used" ;;
|
||||||
NO) echo " + PCRE library is not found" ;;
|
NO) echo " PCRE library is not found" ;;
|
||||||
*) echo " + using PCRE library: $PCRE" ;;
|
*) echo " using PCRE library: $PCRE" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case $MD5 in
|
case $MD5 in
|
||||||
YES) echo " + md5: using system $MD5_LIB library" ;;
|
YES) echo " md5: using system $MD5_LIB library" ;;
|
||||||
NONE) echo " + md5 library is not used" ;;
|
NONE) echo " md5 library is not used" ;;
|
||||||
NO) echo " + md5 library is not found" ;;
|
NO) echo " md5 library is not found" ;;
|
||||||
*) echo " + using md5 library: $MD5" ;;
|
*) echo " using md5 library: $MD5" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case $OPENSSL in
|
case $OPENSSL in
|
||||||
YES) echo " + using system OpenSSL library" ;;
|
YES) echo " using system OpenSSL library" ;;
|
||||||
NONE) echo " + OpenSSL library is not used" ;;
|
NONE) echo " OpenSSL library is not used" ;;
|
||||||
NO) echo " + OpenSSL library is not found" ;;
|
NO) echo " OpenSSL library is not found" ;;
|
||||||
*) echo " + using OpenSSL library: $OPENSSL" ;;
|
*) echo " using OpenSSL library: $OPENSSL" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case $ZLIB in
|
case $ZLIB in
|
||||||
YES) echo " + using system zlib library" ;;
|
YES) echo " using system zlib library" ;;
|
||||||
NONE) echo " + zlib library is not used" ;;
|
NONE) echo " zlib library is not used" ;;
|
||||||
NO) echo " + zlib library is not found" ;;
|
NO) echo " zlib library is not found" ;;
|
||||||
*) echo " + using zlib library: $ZLIB" ;;
|
*) echo " using zlib library: $ZLIB" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
echo
|
echo
|
||||||
@ -65,10 +65,10 @@ if [ $HTTP_GZIP = YES ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo " nginx path prefix: $PREFIX"
|
echo " nginx path prefix: $PREFIX"
|
||||||
echo " nginx binary file: $SBIN_PATH"
|
echo " nginx binary file: $SBIN_PATH"
|
||||||
echo " nginx configuration file: $CONF_PATH"
|
echo " nginx configuration file: $CONF_PATH"
|
||||||
echo " nginx pid file: $PID_PATH"
|
echo " nginx pid file: $PID_PATH"
|
||||||
echo " nginx error log file: $ERROR_LOG_PATH"
|
echo " nginx error log file: $ERROR_LOG_PATH"
|
||||||
echo " nginx http access log file: $HTTP_LOG_PATH"
|
echo " nginx http access log file: $HTTP_LOG_PATH"
|
||||||
echo
|
echo
|
||||||
|
@ -45,7 +45,7 @@ typedef struct {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* ngx_http_conf_get_module_srv_conf() and ngx_http_conf_get_module_loc_conf()
|
* ngx_http_conf_get_module_srv_conf() and ngx_http_conf_get_module_loc_conf()
|
||||||
* msut not be used because at the merge phase cf->ctx points to http{}'s ctx
|
* must not be used at the merge phase because cf->ctx points to http{}'s ctx
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define ngx_http_conf_get_module_main_conf(cf, module) \
|
#define ngx_http_conf_get_module_main_conf(cf, module) \
|
||||||
|
@ -66,9 +66,11 @@ typedef struct {
|
|||||||
#define NGX_IMAP_PROXY_ERROR 11
|
#define NGX_IMAP_PROXY_ERROR 11
|
||||||
|
|
||||||
|
|
||||||
#define NGX_IMAP_MODULE 0x50414D49 /* "IMAP" */
|
#define NGX_IMAP_MODULE 0x50414D49 /* "IMAP" */
|
||||||
|
|
||||||
#define NGX_IMAP_CONF 0x02000000
|
#define NGX_IMAP_SRV_CONF 0x02000000
|
||||||
|
#define NGX_IMAP_IMAP_CONF 0x04000000
|
||||||
|
#define NGX_IMAP_POP3_CONF 0x08000000
|
||||||
|
|
||||||
|
|
||||||
void ngx_imap_init_connection(ngx_connection_t *c);
|
void ngx_imap_init_connection(ngx_connection_t *c);
|
||||||
|
Loading…
Reference in New Issue
Block a user