diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-06-06 19:49:18 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-06 19:49:18 +0000 |
| commit | 0ab91b901299ac41e3867ebec7e04e5082a4c8b4 (patch) | |
| tree | b89e863c141bc482c85c351f84d9dca1d3570789 /auto/unix | |
| parent | 6e1bbd78967660b49e3a120bbeec6382ed193d5f (diff) | |
| download | nginx-0ab91b901299ac41e3867ebec7e04e5082a4c8b4.tar.gz nginx-0ab91b901299ac41e3867ebec7e04e5082a4c8b4.tar.bz2 | |
nginx-0.0.3-2004-06-06-23:49:18 import
Diffstat (limited to '')
| -rwxr-xr-x | auto/unix | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -110,3 +110,15 @@ ngx_func="localtime_r()" ngx_func_inc="#include <time.h>" ngx_func_test="struct tm t; time_t c=0; localtime_r(&c, &t)" . auto/func + + +ngx_func="posix_memalign()" +ngx_func_inc="#include <stdlib.h>" +ngx_func_test="void *p, int n; n = posix_memalign(&p, 4096, 4096)" +. auto/func + + +ngx_func="memalign()" +ngx_func_inc="#include <stdlib.h>" +ngx_func_test="void *p; p = memalign(4096, 4096)" +. auto/func |
