summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorZhanna Tsitkov <tsitkova@mit.edu>2009-07-28 16:21:19 +0000
committerZhanna Tsitkov <tsitkova@mit.edu>2009-07-28 16:21:19 +0000
commit0479bee230a5fb18a7b1333dcf2678250241438f (patch)
tree318c540fb90ed3df2466b7e1ac8f541704c4fc30 /src
parent4df1b1047b8099a070cda91797af58eafb01f024 (diff)
Crypto Modularity proj: Added an option --with-crypto-impl to configure.in to specify crypto impl
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22460 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/configure.in b/src/configure.in
index 94775f136..9556c949d 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -115,6 +115,16 @@ if test "$withval" = yes; then
AC_DEFINE(KRBCONF_VAGUE_ERRORS,1,[Define if the KDC should return only vague error codes to clients])
fi
dnl
+dnl WITH_CRYPTO_IMPL
+dnl
+CRYPTO_IMPL="builtin"
+AC_ARG_WITH([crypto-impl],
+AC_HELP_STRING([--with-crypto-impl=IMPL], [use specified crypto implementation @<:@builtin@:>@]),
+[CRYPTO_IMPL=$withval
+AC_MSG_RESULT("k5crypto will use \'$withval\'")
+], withval=builtin)dnl
+AC_SUBST(CRYPTO_IMPL)
+dnl
dnl --with-kdc-kdb-update makes the KDC update the database with last request
dnl information and failure information.
dnl