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:
rfm 2010-01-21 08:23:19 +00:00
parent f0aa4a6bf3
commit 74c0d2f0c6
3 changed files with 6 additions and 2 deletions

View file

@ -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
View file

@ -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

View file

@ -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