diff options
author | Werner Koch <[email protected]> | 2013-02-26 16:25:20 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-02-26 16:26:44 +0000 |
commit | 5090f6f246bfad2eb80f3cc222963f73996d8028 (patch) | |
tree | 3c91418c4f2cf1bd11b9841ef1ea5b922492987e /configure.ac | |
parent | w32: Hacks for building with 32 bit mingw64. (diff) | |
download | gpgme-5090f6f246bfad2eb80f3cc222963f73996d8028.tar.gz gpgme-5090f6f246bfad2eb80f3cc222963f73996d8028.zip |
Enable FD passing and thus building of the UI-server.
* configure.ac: Make --enable-fd-passing the default.
* src/engine-uiserver.c (_gpgme_engine_ops_uiserver): Syntax fix.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 0fb326e6..693d403c 100644 --- a/configure.ac +++ b/configure.ac @@ -870,9 +870,9 @@ AC_CHECK_MEMBER(struct cmsghdr.cmsg_len, #include <unistd.h> ]) -use_descriptor_passing=no +use_descriptor_passing=yes AC_ARG_ENABLE(fd-passing, - AC_HELP_STRING([--enable-fd-passing], [use FD passing if supported]), + AC_HELP_STRING([--disable-fd-passing], [do not use FD passing]), use_descriptor_passing=$enableval) if test "$supports_descriptor_passing" != "yes"; then |