Revert "Disable fd-passing for Apple."

The actual bug has been located, so this can be reverted.

This reverts commit ef5b4ae37d.
This commit is contained in:
Justus Winter 2017-02-13 14:01:32 +01:00
parent 60064c665e
commit f8db658f8b
No known key found for this signature in database
GPG Key ID: DD1A52F9DA8C9020

View File

@ -722,18 +722,7 @@ AC_CHECK_MEMBER(struct cmsghdr.cmsg_len,
#include <unistd.h>
])
dnl There seems to be a problem with Apple and decriptor passing.
dnl Until we found a solution we change the default to no.
dnl See bug 1483.
case "${host}" in
*-apple-darwin*)
use_descriptor_passing=no
;;
*)
use_descriptor_passing=yes
;;
esac
use_descriptor_passing=yes
AC_ARG_ENABLE(fd-passing,
AC_HELP_STRING([--disable-fd-passing], [do not use FD passing]),
use_descriptor_passing=$enableval)