Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=242f1a343776a621ad5c3446d6f2718d37863cb5
Commit:     242f1a343776a621ad5c3446d6f2718d37863cb5
Parent:     f881d8290c59beb472062142aab54af2554d0d9c
Author:     Frederik Deweerdt <[EMAIL PROTECTED]>
AuthorDate: Fri Feb 15 19:19:33 2008 +0800
Committer:  Herbert Xu <[EMAIL PROTECTED]>
CommitDate: Fri Feb 15 19:19:33 2008 +0800

    [CRYPTO] tcrypt: Add missing Kconfig dependency on BLKCIPHER
    
    Building latest git fails with the following error:
        ERROR: "crypto_alloc_ablkcipher" [crypto/tcrypt.ko] undefined!
    This appears to happen because CONFIG_CRYPTO_TEST is set while
    CONFIG_CRYPTO_BLKCIPHER is not.
    The following patch fixes the problem for me.
    
    Signed-off-by: Frederik Deweerdt <[EMAIL PROTECTED]>
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
---
 crypto/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/crypto/Kconfig b/crypto/Kconfig
index c3166a1..d0287ce 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -567,6 +567,7 @@ config CRYPTO_TEST
        depends on m
        select CRYPTO_ALGAPI
        select CRYPTO_AEAD
+       select CRYPTO_BLKCIPHER
        help
          Quick & dirty crypto test module.
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to