diff options
author | Werner Koch <[email protected]> | 2010-07-26 14:01:32 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-07-26 14:01:32 +0000 |
commit | ca279dc707df0cdca43271ba02133327a138f625 (patch) | |
tree | 53cb5c3a804bb9c8ddffdc0a2bb0e3ecd8f22b40 /configure.ac | |
parent | Add new set_binary feature to estream (diff) | |
download | gnupg-ca279dc707df0cdca43271ba02133327a138f625.tar.gz gnupg-ca279dc707df0cdca43271ba02133327a138f625.zip |
Some work on the dirmngr
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 24ff41235..0e799a2ff 100644 --- a/configure.ac +++ b/configure.ac @@ -540,6 +540,7 @@ have_dosish_system=no have_w32_system=no have_w32ce_system=no use_simple_gettext=no +use_ldapwrapper=yes mmap_needed=yes case "${host}" in *-mingw32*) @@ -554,6 +555,7 @@ case "${host}" in disable_keyserver_path=yes have_dosish_system=yes have_w32_system=yes + use_ldapwrapper=no # Fixme: Do this only for CE. case "${host}" in *-mingw32ce*) have_w32ce_system=yes @@ -636,6 +638,11 @@ fi AM_CONDITIONAL(HAVE_W32_SYSTEM, test "$have_w32_system" = yes) AM_CONDITIONAL(HAVE_W32CE_SYSTEM, test "$have_w32ce_system" = yes) +if test "$use_ldapwrapper" = yes; then + AC_DEFINE(USE_LDAPWRAPPER,1, [Build dirmngr with LDAP wrapper process]) +fi +AM_CONDITIONAL(USE_LDAPWRAPPER, test "$use_ldapwrapper" = yes) + if test "$disable_keyserver_path" = yes; then AC_DEFINE(DISABLE_KEYSERVER_PATH,1, [Defined to disable exec-path for keyserver helpers]) |