At Thu, 13 Mar 2003 13:39:02 +0200,
Andrei Boros wrote:
>
>
> I think I found out why it doesn't compile the snd-isapnp module
>
> in alsa-driver/Makefile :
(snip)
> compilation works.
thanks, applied to cvs now.
Takashi
---
This SF.net
I think I found out why it doesn't compile the snd-isapnp module
in alsa-driver/Makefile :
ifeq (n,$(CONFIG_ISAPNP_KERNEL))
ifeq (y,$(CONFIG_ISAPNP))
ifeq (y,$(CONFIG_ISA))
SUBDIRS += support
endif
endif
endif
That should be changed to :
ifdef CONFIG_ISAPNP_KERNEL
else
ifeq (y,$(CONFIG_ISAPNP