diff src/core/nginx.c @ 945:3a126fca07fc

the -V switch
author Igor Sysoev <igor@sysoev.ru>
date Sat, 23 Dec 2006 19:54:21 +0000
parents 45df22906c12
children bb748b37cabd
line wrap: on
line diff
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -176,6 +176,7 @@ ngx_module_t  ngx_core_module = {
 ngx_uint_t  ngx_max_module;
 
 static ngx_uint_t  ngx_show_version;
+static ngx_uint_t  ngx_show_configure;
 
 static char  *ngx_null_environ = NULL;
 
@@ -235,10 +236,21 @@ main(int argc, char *const *argv)
         ngx_write_fd(ngx_stderr_fileno, "nginx version: " NGINX_VER CRLF,
                      sizeof("nginx version: " NGINX_VER CRLF) - 1);
 
+#ifndef __WATCOMC__
+
+        if (ngx_show_configure) {
 #ifdef NGX_COMPILER
-        ngx_write_fd(ngx_stderr_fileno, "built by " NGX_COMPILER CRLF,
-                     sizeof("built by " NGX_COMPILER CRLF) - 1);
+            ngx_write_fd(ngx_stderr_fileno, "built by " NGX_COMPILER CRLF,
+                         sizeof("built by " NGX_COMPILER CRLF) - 1);
 #endif
+
+            ngx_write_fd(ngx_stderr_fileno,
+                         "configure arguments " NGX_CONFIGURE CRLF,
+                         sizeof("configure arguments " NGX_CONFIGURE CRLF) - 1);
+        }
+
+#endif
+
         if (!ngx_test_config) {
             return 0;
         }
@@ -498,6 +510,11 @@ ngx_getopt(ngx_cycle_t *cycle, int argc,
             ngx_show_version = 1;
             break;
 
+        case 'V':
+            ngx_show_version = 1;
+            ngx_show_configure = 1;
+            break;
+
         case 't':
             ngx_test_config = 1;
             break;