diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-02-10 16:23:38 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-02-10 16:23:38 +0000 |
| commit | c7a2f6860669f45f5abe342163de5bc68e344816 (patch) | |
| tree | 08755593cd5f7537d0b63cf2a6c8b835e1082792 /auto | |
| parent | e9b2cb1b9d286cffa8053e41c87b12ce265c4f25 (diff) | |
| download | nginx-c7a2f6860669f45f5abe342163de5bc68e344816.tar.gz nginx-c7a2f6860669f45f5abe342163de5bc68e344816.tar.bz2 | |
nginx-0.0.2-2004-02-10-19:23:38 import
Diffstat (limited to 'auto')
| -rwxr-xr-x | auto/configure | 2 | ||||
| -rwxr-xr-x | auto/unix | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/auto/configure b/auto/configure index 162a69746..f9ad3191c 100755 --- a/auto/configure +++ b/auto/configure @@ -3,7 +3,7 @@ . auto/init . auto/sources -test -d $OBJ || mkdir $OBJ +test -d $OBJS || mkdir $OBJS echo > $NGX_AUTO_CONFIG_H if [ "$PLATFORM" != win32 ]; then @@ -98,6 +98,12 @@ ngx_func_test="char buf[20]; int n; n = strerror_r(1, buf, 20)" . auto/func +ngx_func="gnu_strerror_r()" +ngx_func_inc="#include <string.h>" +ngx_func_test="char buf[20], *str; str = strerror_r(1, buf, 20)" +. auto/func + + ngx_func="localtime_r()" ngx_func_inc="#include <time.h>" ngx_func_test="struct tm t; time_t c=0; localtime_r(&c, &t)" |
