# HG changeset patch # User Bruno Haible # Date 1214253046 -7200 # Node ID f3834f370cbd8d8ea736761e92c6df7c844f4263 # Parent 9b147a1f7a76f4dd48dca97e5f5e44e3a10286e4 Comment fixes. diff -r 9b147a1f7a76 -r f3834f370cbd ChangeLog --- a/ChangeLog Mon Jun 23 06:44:55 2008 -0600 +++ b/ChangeLog Mon Jun 23 22:30:46 2008 +0200 @@ -1,3 +1,8 @@ +2008-06-23 Bruno Haible + + * m4/sigaction.m4: Comment fixes. + * lib/signal.in.h: Likewise. + 2008-06-23 Eric Blake Fix typo. diff -r 9b147a1f7a76 -r f3834f370cbd lib/signal.in.h --- a/lib/signal.in.h Mon Jun 23 06:44:55 2008 -0600 +++ b/lib/signal.in.h Mon Jun 23 22:30:46 2008 +0200 @@ -118,9 +118,8 @@ typedef struct siginfo_t siginfo_t; # endif /* !@HAVE_SIGINFO_T@ */ - /* Due to autoconf conventions, we can't tell if HAVE_SIGACTION - means we have the type or means we have the function. We assume - that all implementations either have both or neither. */ +/* We assume that platforms which lack the sigaction() function also lack + the 'struct sigaction' type, and vice versa. */ struct sigaction { diff -r 9b147a1f7a76 -r f3834f370cbd m4/sigaction.m4 --- a/m4/sigaction.m4 Mon Jun 23 06:44:55 2008 -0600 +++ b/m4/sigaction.m4 Mon Jun 23 22:30:46 2008 +0200 @@ -8,9 +8,6 @@ AC_DEFUN([gl_SIGACTION], [ AC_REQUIRE([gl_SIGNAL_H_DEFAULTS]) - dnl Due to autoconf conventions, we can't tell if HAVE_SIGACTION - dnl means we have the type or means we have the function. We assume - dnl that all implementations either have both or neither. AC_REPLACE_FUNCS([sigaction]) if test $ac_cv_func_sigaction = no ; then HAVE_SIGACTION=0