Skip to content
Snippets Groups Projects
Commit 9dd2204a authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added check for the wait union.

Rev: src/configure.in:1.184
parent 38b0f5d3
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.183 1998/05/15 18:46:12 grubba Exp $")
AC_REVISION("$Id: configure.in,v 1.184 1998/05/17 20:37:12 grubba Exp $")
AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h)
......@@ -1445,6 +1445,23 @@ fi
#############################################################################
AC_MSG_CHECKING([for union wait (old BSD convention)])
AC_CACHE_VAL(pike_cv_union_wait, [ AC_TRY_COMPILE([
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
], [
union wait status;
exit(0);
], pike_cv_union_wait=yes, pike_cv_union_wait=no)
])
AC_MSG_RESULT($pike_cv_union_wait)
if test "x$pike_cv_union_wait" = "xyes" ; then
AC_DEFINE(HAVE_UNION_WAIT)
fi
#############################################################################
AC_MSG_CHECKING(how to extract an unsigned char)
AC_CACHE_VAL(pike_cv_method_extract_uchar,
[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment