mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Re-instate lost check for setsid
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29341 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f0aa4a6bf3
commit
74c0d2f0c6
3 changed files with 6 additions and 2 deletions
|
@ -286,6 +286,9 @@
|
|||
/* Define to 1 if you have the `setrlimit' function. */
|
||||
#undef HAVE_SETRLIMIT
|
||||
|
||||
/* Define to 1 if you have the `setsid' function. */
|
||||
#undef HAVE_SETSID
|
||||
|
||||
/* Define if libobjc has the objc_set_unexpected() function */
|
||||
#undef HAVE_SET_UNEXPECTED
|
||||
|
||||
|
|
3
configure
vendored
3
configure
vendored
|
@ -14817,7 +14817,8 @@ done
|
|||
|
||||
|
||||
|
||||
for ac_func in killpg setpgrp setpgid
|
||||
|
||||
for ac_func in killpg setpgrp setpgid setsid
|
||||
do
|
||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
echo "$as_me:$LINENO: checking for $ac_func" >&5
|
||||
|
|
|
@ -938,7 +938,7 @@ AC_CHECK_HEADERS(sys/mman.h)
|
|||
#--------------------------------------------------------------------
|
||||
# These functions needed by NSTask.m
|
||||
#--------------------------------------------------------------------
|
||||
AC_CHECK_FUNCS(killpg setpgrp setpgid)
|
||||
AC_CHECK_FUNCS(killpg setpgrp setpgid setsid)
|
||||
if test "x$ac_cv_func_setpgrp" = xyes; then
|
||||
AC_FUNC_SETPGRP
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue