airo.c currently has MICSUPPORT enabled, which requires CONFIG_CRYPTO. A user reported a build failure which is due to the lack of a Kconfig dependency. See http://bugs.debian.org/344205.
This patch makes Kconfig enforce this dependency. Signed-off-by: dann frazier <[EMAIL PROTECTED]> --- linux-source-2.6.15/drivers/net/wireless/Kconfig~ 2006-01-02 20:21:10.000000000 -0700 +++ linux-source-2.6.15/drivers/net/wireless/Kconfig 2006-01-07 17:27:41.000000000 -0700 @@ -243,7 +243,7 @@ config AIRO tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards" - depends on NET_RADIO && ISA_DMA_API && (PCI || BROKEN) + depends on NET_RADIO && ISA_DMA_API && CRYPTO && (PCI || BROKEN) ---help--- This is the standard Linux driver to support Cisco/Aironet ISA and PCI 802.11 wireless cards. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]