diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-27 05:54:37 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-27 05:54:37 +0000 |
commit | 8e902d288c03c120b5b89134636d564318006210 (patch) | |
tree | 4636716a8cf82a6595e5d302eb4b9a1a3736f0a7 /package/alsa | |
parent | b664928394cae9b3a5c0c024c9abf6344aea874c (diff) |
fix alsa on 2.6 (some arches need specific includes)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4859 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/alsa')
-rw-r--r-- | package/alsa/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/alsa/Makefile b/package/alsa/Makefile index d82d87ada..47ad4456b 100644 --- a/package/alsa/Makefile +++ b/package/alsa/Makefile @@ -33,14 +33,18 @@ endef ifeq ($(KERNEL),2.4) ifeq ($(LINUX_KARCH),i386) - KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time endif ifeq ($(LINUX_KARCH),mips) - KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic KERNEL_C_OPTS:= -Os -G 0 -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap endif endif +ifeq ($(LINUX_KARCH),i386) + KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default +endif +ifeq ($(LINUX_KARCH),mips) + KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic +endif define Build/Configure (cd $(PKG_BUILD_DIR); \ |