comparison auto/unix @ 624:d4da38525468 NGINX_1_0_2

nginx 1.0.2 *) Feature: now shared zones and caches use POSIX semaphores. *) Bugfix: in the "rotate" parameter of the "image_filter" directive. Thanks to Adam Bocim. *) Bugfix: nginx could not be built on Solaris; the bug had appeared in 1.0.1.
author Igor Sysoev <http://sysoev.ru>
date Tue, 10 May 2011 00:00:00 +0400
parents 8dc007eddbcf
children 83b58b182b76
comparison
equal deleted inserted replaced
623:9b9e61f1b500 624:d4da38525468
139 # Solaris has no sys_nerr 139 # Solaris has no sys_nerr
140 ngx_feature='maximum errno' 140 ngx_feature='maximum errno'
141 ngx_feature_name=NGX_SYS_NERR 141 ngx_feature_name=NGX_SYS_NERR
142 ngx_feature_run=value 142 ngx_feature_run=value
143 ngx_feature_incs='#include <errno.h> 143 ngx_feature_incs='#include <errno.h>
144 #include <string.h>' 144 #include <string.h>
145 #include <stdio.h>' 145 #include <stdio.h>'
146 ngx_feature_path= 146 ngx_feature_path=
147 ngx_feature_libs= 147 ngx_feature_libs=
148 ngx_feature_test='int n; 148 ngx_feature_test='int n;
149 char *p; 149 char *p;
232 if (id == -1) return 1; 232 if (id == -1) return 1;
233 shmctl(id, IPC_RMID, NULL);" 233 shmctl(id, IPC_RMID, NULL);"
234 . auto/feature 234 . auto/feature
235 235
236 236
237 ngx_feature="POSIX semaphores"
238 ngx_feature_name="NGX_HAVE_POSIX_SEM"
239 ngx_feature_run=yes
240 ngx_feature_incs="#include <semaphore.h>"
241 ngx_feature_path=
242 ngx_feature_libs=
243 ngx_feature_test="sem_t sem;
244 if (sem_init(&sem, 1, 0) == -1) return 1;
245 sem_destroy(&sem);"
246 . auto/feature
247
248
237 ngx_feature="struct msghdr.msg_control" 249 ngx_feature="struct msghdr.msg_control"
238 ngx_feature_name="NGX_HAVE_MSGHDR_MSG_CONTROL" 250 ngx_feature_name="NGX_HAVE_MSGHDR_MSG_CONTROL"
239 ngx_feature_run=no 251 ngx_feature_run=no
240 ngx_feature_incs="#include <sys/socket.h>" 252 ngx_feature_incs="#include <sys/socket.h>"
241 ngx_feature_path= 253 ngx_feature_path=