nginx-1.0.1

jjjx128 nginx-forum на nginx.us
Ср Май 4 16:08:57 MSD 2011


По-моему лишняя кавычка в ngx_feature_incs:

--- a/auto/unix Tue Apr 12 00:00:00 2011 +0400
+++ b/auto/unix Wed May 04 15:09:05 2011 +0300
@@ -141,14 +141,19 @@
     ngx_feature_name=NGX_SYS_NERR
     ngx_feature_run=value
     ngx_feature_incs='#include <errno.h>
+                      #include <string.h>'
                       #include <stdio.h>'
     ngx_feature_path=
     ngx_feature_libs=
     ngx_feature_test='int  n;
+                      char *p;
                       for (n = 1; n < 1000; n++) {
                           errno = 0;
-                          strerror(n);
-                          if (errno == EINVAL) {
+                          p = strerror(n);
+                          if (errno == EINVAL
+                              || p == NULL
+                              || strncmp(p, "Unknown error", 13) == 0)
+                          {
                               printf("%d", n);
                               return 0;
                           }

Posted at Nginx Forum: http://forum.nginx.org/read.php?21,195213,195541#msg-195541




Подробная информация о списке рассылки nginx-ru