diff options
author | Justus Winter <[email protected]> | 2017-02-13 13:01:32 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-02-13 13:01:55 +0000 |
commit | f8db658f8b4c3c7941d0029273fb23fbe1ba74ad (patch) | |
tree | a59d3a92776543a4a55f3f21ea817e151bf84a44 | |
parent | qt: Add missing #include <functional> (diff) | |
download | gpgme-f8db658f8b4c3c7941d0029273fb23fbe1ba74ad.tar.gz gpgme-f8db658f8b4c3c7941d0029273fb23fbe1ba74ad.zip |
Revert "Disable fd-passing for Apple."
The actual bug has been located, so this can be reverted.
This reverts commit ef5b4ae37d13142e89a051908dc080cda3d24baa.
-rw-r--r-- | configure.ac | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index f28480b9..a5ee77b7 100644 --- a/configure.ac +++ b/configure.ac @@ -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) |