mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Check for <sys/wait.h>
2005-08-18 Tor Lillqvist <tml@novell.com> * configure.in: Check for <sys/wait.h> * glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
This commit is contained in:
parent
efa05f88ef
commit
3c449f00cc
@ -1,3 +1,9 @@
|
||||
2005-08-18 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* configure.in: Check for <sys/wait.h>
|
||||
|
||||
* glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
|
||||
|
||||
2005-08-18 Ross Burton <ross@burtonini.com>
|
||||
|
||||
* glib/gstring.c:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-08-18 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* configure.in: Check for <sys/wait.h>
|
||||
|
||||
* glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
|
||||
|
||||
2005-08-18 Ross Burton <ross@burtonini.com>
|
||||
|
||||
* glib/gstring.c:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-08-18 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* configure.in: Check for <sys/wait.h>
|
||||
|
||||
* glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
|
||||
|
||||
2005-08-18 Ross Burton <ross@burtonini.com>
|
||||
|
||||
* glib/gstring.c:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-08-18 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* configure.in: Check for <sys/wait.h>
|
||||
|
||||
* glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
|
||||
|
||||
2005-08-18 Ross Burton <ross@burtonini.com>
|
||||
|
||||
* glib/gstring.c:
|
||||
|
@ -772,7 +772,7 @@ AC_C_BIGENDIAN
|
||||
|
||||
# check for header files
|
||||
AC_CHECK_HEADERS([dirent.h float.h limits.h pwd.h sys/param.h sys/poll.h sys/select.h sys/types.h])
|
||||
AC_CHECK_HEADERS([sys/time.h sys/times.h unistd.h values.h stdint.h sched.h])
|
||||
AC_CHECK_HEADERS([sys/time.h sys/times.h sys/wait.h unistd.h values.h stdint.h sched.h])
|
||||
|
||||
# Checks for libcharset
|
||||
jm_LANGINFO_CODESET
|
||||
|
@ -45,7 +45,9 @@
|
||||
#include <sys/times.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_SYS_WAIT_H
|
||||
#include <sys/wait.h>
|
||||
#endif
|
||||
|
||||
#include <time.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
|
Loading…
Reference in New Issue
Block a user