diff options
author | Rusty Russell <rusty@linuxcare.com.au> | 2001-04-21 04:25:09 +0000 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2001-04-21 04:25:09 +0000 |
commit | da70715426ccd5bda79fe597945bf7da43597368 (patch) | |
tree | 88bcf9507c2ba47a12fd7726a023cb5481bf00cf /Makefile | |
parent | b5166476721dd0b663f52bd220ef008ca269c0dc (diff) |
Added hppa 64-bit hack next to sparc64 hack.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -48,6 +48,12 @@ ifeq ($(shell uname -m),sparc64) CFLAGS+=-DIPT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32 endif +# HPPA hack +ifeq ($(shell uname -m),parisc64) +# The kernel is 64-bit, even though userspace is 32. +CFLAGS+=-DIPT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32 +endif + ifndef IPT_LIBDIR IPT_LIBDIR:=$(LIBDIR)/iptables endif |