mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
* configure.ac: Add --enable-sha512 switch to add SHA384/512 support.
This commit is contained in:
parent
4eafcfb13b
commit
40d6d881b4
@ -1,3 +1,8 @@
|
|||||||
|
2003-02-11 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* configure.ac: Add --enable-sha512 switch to add SHA384/512
|
||||||
|
support.
|
||||||
|
|
||||||
2003-02-06 David Shaw <dshaw@jabberwocky.com>
|
2003-02-06 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* configure.ac: Do not set GNUPG_LIBEXECDIR in ./configure, so
|
* configure.ac: Do not set GNUPG_LIBEXECDIR in ./configure, so
|
||||||
|
10
configure.ac
10
configure.ac
@ -157,6 +157,16 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to enable read-only SHA-384 and SHA-512 digest support])
|
||||||
|
AC_ARG_ENABLE(sha512,
|
||||||
|
[ --enable-sha512 enable read-only SHA-384 and SHA-512 digest support],
|
||||||
|
use_sha512=$enableval, use_sha512=no)
|
||||||
|
AC_MSG_RESULT($use_sha512)
|
||||||
|
if test "$use_sha512" = yes ; then
|
||||||
|
AC_SUBST(SHA512_O,sha512.o)
|
||||||
|
AC_DEFINE(USE_SHA512,1,[Define to include read-only SHA-384 and SHA-512 digest support])
|
||||||
|
fi
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether to enable external program execution])
|
AC_MSG_CHECKING([whether to enable external program execution])
|
||||||
AC_ARG_ENABLE(exec,
|
AC_ARG_ENABLE(exec,
|
||||||
[ --disable-exec disable all external program execution],
|
[ --disable-exec disable all external program execution],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user