diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-11-29 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> + + * [w3m-dev 02588] + * configure: fix alarm() check + 2001-11-29 Fumitoshi UKAI <ukai@debian.or.jp> * [w3m-dev 02587] @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.26 2001/11/29 10:22:58 ukai Exp $ +# $Id: configure,v 1.27 2001/11/29 11:09:23 ukai Exp $ # Configuration. # @@ -1612,7 +1612,7 @@ if [ "$use_alarm" = y ]; then main() { int sa = SIGALRM; - void (*)() = alarm; + void (*a)() = alarm; } EOF if $cc $cflags -o _zmachdep _zmachdep.c > /dev/null 2>&1 |