view modules/sigaction @ 17335:840c32a600aa

getcwd: support coreutils better Like strtod, getcwd incorrectly referred to HAVE_RAW_DECL_GETCWD, but this might not be correct in coreutils, which disables the raw decl checks. Problem reported by Nagendra in <http://bugs.gnu.org/10305#192>. * lib/getcwd.c (__getcwd): Do not depend on HAVE_RAW_DECL_GETCWD. * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Test the getcwd function, not any macro, since getcwd.c wants the function. * m4/getcwd.m4 (gl_FUNC_GETCWD): Don't define HAVE_MINIMALLY_WORKING_GETCWD if the code doesn't compile, as might happen if there's a macro but no function.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 20 Feb 2013 00:04:35 -0800
parents 7531a1bd77d7
children
line wrap: on
line source

Description:
POSIX compatible signal handlers.

Files:
lib/sigaction.c
lib/sig-handler.h
lib/sig-handler.c
m4/sigaction.m4

Depends-on:
extern-inline
signal-h
sigprocmask     [test $HAVE_SIGACTION = 0]

configure.ac:
gl_SIGACTION
if test $HAVE_SIGACTION = 0; then
  AC_LIBOBJ([sigaction])
  gl_PREREQ_SIGACTION
fi
gl_SIGNAL_MODULE_INDICATOR([sigaction])

Makefile.am:
lib_SOURCES += sig-handler.c

Include:
<signal.h>

License:
LGPLv2+

Maintainer:
Eric Blake