[Mew-dist 15197] Re: Old Emacs & Old OS の問題点
Atsushi Onoe
onoe at example.com
2000年 11月 29日 (水) 12:14:04 JST
全然本質じゃないけど、
> (3) Solaris 2.4 は bin の configure で
> checking for usleep... no
> checking for Sleep... no
> となってしまうので、make でこけます。
> mew.h で
>
> #ifndef HAVE_USLEEP
> # ifdef HAVE_SLEEP
> # define usleep(x) Sleep(x / 1000)
> # else
> # define usleep(x) ;
> # endif
> #endif
Solaris なら
#ifdef HAVE_POLL
#define usleep(x) poll(0, 0, (x)/1000)
#endif
くらい?
select() しか使えないと関数にしないとだめか。
尾上
Mew-dist メーリングリストの案内