comparison auto/unix @ 346:55e496a8ece3

nginx-0.0.3-2004-06-06-23:49:18 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 06 Jun 2004 19:49:18 +0000
parents b79f021a644a
children 0fb6c53fb135
comparison
equal deleted inserted replaced
345:fade4edd61f8 346:55e496a8ece3
108 108
109 ngx_func="localtime_r()" 109 ngx_func="localtime_r()"
110 ngx_func_inc="#include <time.h>" 110 ngx_func_inc="#include <time.h>"
111 ngx_func_test="struct tm t; time_t c=0; localtime_r(&c, &t)" 111 ngx_func_test="struct tm t; time_t c=0; localtime_r(&c, &t)"
112 . auto/func 112 . auto/func
113
114
115 ngx_func="posix_memalign()"
116 ngx_func_inc="#include <stdlib.h>"
117 ngx_func_test="void *p, int n; n = posix_memalign(&p, 4096, 4096)"
118 . auto/func
119
120
121 ngx_func="memalign()"
122 ngx_func_inc="#include <stdlib.h>"
123 ngx_func_test="void *p; p = memalign(4096, 4096)"
124 . auto/func