Bruno Haible <bruno <at> clisp.org> writes:

> The config.log shows nothing unusual, other than
> "checking whether strcasestr works in linear time ... result: yes"
> 
> Two questions:
> - Was the configuration running in some kind of virtual processor/machine
>   (Parallels, QEMU, VirtualBox, VMware Fusion, ...)?
> - How was the configure command launched? Via a terminal (which terminal)?
>   From Xcode? Through 'cron' or 'at'? Other?

Could it be that the process was started with SIGALRM inherited as ignored?  
Generally it is a bad idea to start unrelated child processes with signals in 
an ignored state, when the child isn't expecting it.  Does adding a call 
to "signal(SIGALRM,SIG_DFL);"  prior to the alarm() in the test case help?

-- 
Eric Blake





Reply via email to