nginx-0.0.2-2004-03-01-19:45:48 import

This commit is contained in:
Igor Sysoev 2004-03-01 16:45:48 +00:00
parent d94049b632
commit 83a7a2e567
2 changed files with 25 additions and 1 deletions

24
auto/lib/md5/make Normal file
View File

@ -0,0 +1,24 @@
echo "$MD5/libmd5.a:" >> $MAKEFILE
case $PLATFORM in
SunOS:*:i386)
echo " cd $MD5 && \$(MAKE) x86-solaris" >> $MAKEFILE
;;
*:i386)
echo " cd $MD5 && \$(MAKE) x86-elf" >> $MAKEFILE
;;
*)
if [ $CC = gcc ]; then
echo " cd $MD5 && \$(MAKE) gcc" >> $MAKEFILE
else
echo " cd $MD5 && \$(MAKE) cc" >> $MAKEFILE
fi
;;
esac
echo >> $MAKEFILE

View File

@ -22,7 +22,7 @@ ngx_int_t ngx_event_mutex_timedlock(ngx_event_mutex_t *m, ngx_msec_t timer,
m->last = ev;
ev->next = NULL;
#if (NGX_THREADS)
#if (NGX_THREADS0)
ev->light = 1;
#endif