mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-26 14:00:56 +00:00
Formerly configure.in.~23~
This commit is contained in:
parent
e22a936ca5
commit
5cf5f261d9
1 changed files with 7 additions and 2 deletions
|
@ -55,14 +55,19 @@ pid = waitpid (-1, &status, 0);
|
|||
],
|
||||
AC_DEFINE(HAVE_UNION_WAIT))
|
||||
|
||||
AC_COMPILE_CHECK(sys_siglist declaration in signal.h,
|
||||
[#include <signal.h>], [char *msg = *(sys_siglist + 1);],
|
||||
AC_COMPILE_CHECK(sys_siglist declaration in signal.h or unistd.h,
|
||||
[#include <signal.h>
|
||||
/* NetBSD declares sys_siglist in <unistd.h>. */
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif], [char *msg = *(sys_siglist + 1);],
|
||||
AC_DEFINE(SYS_SIGLIST_DECLARED))
|
||||
|
||||
# The presence of the following is not meant to imply
|
||||
# that make necessarily works on those systems.
|
||||
AC_DYNIX_SEQ
|
||||
AC_XENIX_DIR
|
||||
AC_IRIX_SUN
|
||||
|
||||
AC_SUBST(REMOTE) REMOTE=stub
|
||||
AC_WITH(customs, [REMOTE=cstms
|
||||
|
|
Loading…
Reference in a new issue