mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-28 22:49:59 +01:00
New option --enable-agent-only.
This commit is contained in:
parent
224da03784
commit
3d471c15b8
@ -1,3 +1,7 @@
|
|||||||
|
2004-07-20 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* configure.ac: New option --enable-agent-only.
|
||||||
|
|
||||||
2004-06-08 Werner Koch <wk@gnupg.org>
|
2004-06-08 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
Released 1.9.9.
|
Released 1.9.9.
|
||||||
|
22
configure.ac
22
configure.ac
@ -133,6 +133,13 @@ test -n "$GNUPG_PROTECT_TOOL_PGM" \
|
|||||||
&& show_gnupg_protect_tool_pgm="$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
|
# Configure option to allow ot disallow execution of external
|
||||||
# programs, like a photo viewer.
|
# programs, like a photo viewer.
|
||||||
@ -744,6 +751,7 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# fixme: do we really need this - it should be encapsulated in libassuan
|
||||||
GNUPG_SYS_SO_PEERCRED
|
GNUPG_SYS_SO_PEERCRED
|
||||||
|
|
||||||
# Checks for library functions.
|
# 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
|
# it is broken. It has been reported that some Solaris and HP UX systems
|
||||||
# raise an SIGILL
|
# raise an SIGILL
|
||||||
#
|
#
|
||||||
|
# fixme: Do we need this - iirc, this is only used by libgcrypt.
|
||||||
|
#
|
||||||
AC_CACHE_CHECK([for gethrtime],
|
AC_CACHE_CHECK([for gethrtime],
|
||||||
[gnupg_cv_func_gethrtime],
|
[gnupg_cv_func_gethrtime],
|
||||||
[AC_TRY_LINK([#include <sys/times.h>],[
|
[AC_TRY_LINK([#include <sys/times.h>],[
|
||||||
@ -815,6 +825,8 @@ GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
|
|||||||
dnl
|
dnl
|
||||||
dnl Check whether we can use Linux capabilities as requested
|
dnl Check whether we can use Linux capabilities as requested
|
||||||
dnl
|
dnl
|
||||||
|
# fixme: Still required?
|
||||||
|
#
|
||||||
if test "$use_capabilities" = "yes" ; then
|
if test "$use_capabilities" = "yes" ; then
|
||||||
use_capabilities=no
|
use_capabilities=no
|
||||||
AC_CHECK_HEADERS(sys/capability.h)
|
AC_CHECK_HEADERS(sys/capability.h)
|
||||||
@ -968,7 +980,7 @@ AC_SUBST(W32LIBS)
|
|||||||
|
|
||||||
# We use jnlib, so tell other modules about it
|
# We use jnlib, so tell other modules about it
|
||||||
AC_DEFINE(HAVE_JNLIB_LOGGING, 1,
|
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
|
||||||
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_GPG, test "$build_gpg" = "yes")
|
||||||
AM_CONDITIONAL(BUILD_GPGSM, test "$build_gpgsm" = "yes")
|
AM_CONDITIONAL(BUILD_GPGSM, test "$build_gpgsm" = "yes")
|
||||||
AM_CONDITIONAL(BUILD_AGENT, test "$build_agent" = "yes")
|
AM_CONDITIONAL(BUILD_AGENT, test "$build_agent" = "yes")
|
||||||
@ -1049,7 +1067,7 @@ if test "$have_libassuan" = "no"; then
|
|||||||
***]])
|
***]])
|
||||||
fi
|
fi
|
||||||
if test "$have_ksba" = "no"; then
|
if test "$have_ksba" = "no"; then
|
||||||
die=yes
|
die=no
|
||||||
AC_MSG_NOTICE([[
|
AC_MSG_NOTICE([[
|
||||||
***
|
***
|
||||||
*** You need libksba to build this program.
|
*** You need libksba to build this program.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user