diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 22 |
2 files changed, 24 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2004-07-20 Werner Koch <[email protected]> + + * configure.ac: New option --enable-agent-only. + 2004-06-08 Werner Koch <[email protected]> Released 1.9.9. diff --git a/configure.ac b/configure.ac index 4e611651e..e0f9b720e 100644 --- a/configure.ac +++ b/configure.ac @@ -133,6 +133,13 @@ test -n "$GNUPG_PROTECT_TOOL_PGM" \ && show_gnupg_protect_tool_pgm="$GNUPG_PROTECT_TOOL_PGM" +# Some folks want to use only the agent form this packet. Make it +# easier for them by providing the configure option +# --enable-only-agent. +AC_ARG_ENABLE(agent-only, + AC_HELP_STRING([--enable-agent-only],[build only the gpg-agent]), + build_agent_only=$enableval) + # Configure option to allow ot disallow execution of external # programs, like a photo viewer. @@ -744,6 +751,7 @@ else fi fi +# fixme: do we really need this - it should be encapsulated in libassuan GNUPG_SYS_SO_PEERCRED # Checks for library functions. @@ -777,6 +785,8 @@ AC_REPLACE_FUNCS(putc_unlocked) # it is broken. It has been reported that some Solaris and HP UX systems # raise an SIGILL # +# fixme: Do we need this - iirc, this is only used by libgcrypt. +# AC_CACHE_CHECK([for gethrtime], [gnupg_cv_func_gethrtime], [AC_TRY_LINK([#include <sys/times.h>],[ @@ -815,6 +825,8 @@ GNUPG_FUNC_MKDIR_TAKES_ONE_ARG dnl dnl Check whether we can use Linux capabilities as requested dnl +# fixme: Still required? +# if test "$use_capabilities" = "yes" ; then use_capabilities=no AC_CHECK_HEADERS(sys/capability.h) @@ -968,7 +980,7 @@ AC_SUBST(W32LIBS) # We use jnlib, so tell other modules about it AC_DEFINE(HAVE_JNLIB_LOGGING, 1, - [Defined if jnlib style logging fucntions are available]) + [Defined if jnlib style logging functions are available]) @@ -1006,6 +1018,12 @@ if test "$build_scdaemon" = "yes"; then fi fi +if test "$build_agent_only" = "yes" ; then + build_gpg=no + build_gpgsm=no + build_scdaemon=no +fi + AM_CONDITIONAL(BUILD_GPG, test "$build_gpg" = "yes") AM_CONDITIONAL(BUILD_GPGSM, test "$build_gpgsm" = "yes") AM_CONDITIONAL(BUILD_AGENT, test "$build_agent" = "yes") @@ -1049,7 +1067,7 @@ if test "$have_libassuan" = "no"; then ***]]) fi if test "$have_ksba" = "no"; then - die=yes + die=no AC_MSG_NOTICE([[ *** *** You need libksba to build this program. |