]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Crypto Modularity proj: Added an option --with-crypto-impl to configure.in to specify...
authorZhanna Tsitkov <tsitkova@mit.edu>
Tue, 28 Jul 2009 16:21:19 +0000 (16:21 +0000)
committerZhanna Tsitkov <tsitkova@mit.edu>
Tue, 28 Jul 2009 16:21:19 +0000 (16:21 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22460 dc483132-0cff-0310-8789-dd5450dbe970

src/configure.in

index 94775f136bb5588e42c0ad279810e00901f0c02e..9556c949d14a643077292c9a194f5cc488e30fae 100644 (file)
@@ -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