summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-04 12:31:33 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-04 12:31:33 +0000
commit9ca4e66f27e2563512afdd4c70afab34d80d513d (patch)
tree50b2c59e65ced47367cb333f54264cea095fc72d /configure.in
parent1f69d94690edc49856c79a197899cd8b4e109319 (diff)
downloadruby-9ca4e66f27e2563512afdd4c70afab34d80d513d.tar.gz
ruby-9ca4e66f27e2563512afdd4c70afab34d80d513d.tar.xz
ruby-9ca4e66f27e2563512afdd4c70afab34d80d513d.zip
merges r23277 and r23280 from trunk into ruby_1_9_1.
-- * configure.in (ac_cv_func_daemon): use daemon(3) only on *BSD. * process.c (proc_daemon): double fork to ensure not having ctty. [ruby-core:23311] -- * configure.in (ac_cv_func_daemon): use daemon(3) only on *BSD. * process.c (proc_daemon): double fork to ensure not having ctty. [ruby-core:23305] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 5ddea5d41..3b79bec80 100644
--- a/configure.in
+++ b/configure.in
@@ -518,6 +518,14 @@ AC_ARG_ENABLE(pthread,
dnl Checks for libraries.
case "$target_os" in
+*bsd*|dragonfly*)
+ ;;
+*)
+ ac_cv_func_daemon=no
+ ;;
+esac
+
+case "$target_os" in
nextstep*) ;;
openstep*) ;;
rhapsody*) ;;
@@ -531,7 +539,6 @@ darwin*) LIBS="-lobjc $LIBS"
],
[
ac_cv_header_ucontext_h=no
- ac_cv_func_daemon=no
],
[
AC_DEFINE(BROKEN_SETREUID, 1)