$NetBSD: patch-aa,v 1.4 2012/05/23 05:13:22 dholland Exp $

--- Makefile.orig	2007-10-14 08:43:07.000000000 +0000
+++ Makefile
@@ -3,7 +3,19 @@
 
 # Replace x86 by amd64 for a build on x86_64.
 # Use "nojit" for architectures that are not x86 or x86_64.
-DYNAMIPS_ARCH?=x86
+ifeq ($(shell uname -m), i386)
+   DYNAMIPS_ARCH?=x86
+else
+ifeq ($(shell uname -m), i686)
+   DYNAMIPS_ARCH?=x86
+else
+ifeq ($(shell uname -m), amd64)
+   DYNAMIPS_ARCH?=amd64
+else
+   DYNAMIPS_ARCH?=nojit
+endif
+endif
+endif
 
 # Change this to 0 if your system doesn't support RFC 2553 extensions
 HAS_RFC2553?=1
@@ -54,11 +66,21 @@ ifeq ($(shell uname), FreeBSD)
 	$(PTHREAD_CFLAGS) -D_FILE_OFFSET_BITS=64
    LIBS=-L$(LOCALBASE)/lib -L. -ldl -lelf $(PTHREAD_LIBS) $(LDFLAGS)
 else
+ifeq ($(shell uname -s), NetBSD)
+   PTHREAD_LIBS?=-pthread
+   CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/libelf ${PTHREAD_CFLAGS}
+   LIBS=-L${LOCALBASE}/lib -lelf ${PTHREAD_LIBS} ${PTHREAD_LDFLAGS} -R${LOCALBASE}/lib
+else
+ifeq ($(shell uname -s), DragonFly)
+   PTHREAD_LIBS?=-pthread
+   CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/libelf ${PTHREAD_CFLAGS}
+   LIBS=-L${LOCALBASE}/lib -lelf ${PTHREAD_LIBS} ${PTHREAD_LDFLAGS} -R${LOCALBASE}/lib
+else
 ifeq ($(shell uname), Linux)
    PTHREAD_LIBS?=-lpthread
 #   PCAP_LIB=-lpcap
    CFLAGS+=-I/usr/include -I. $(PTHREAD_CFLAGS)
-   LIBS=-L/usr/lib -L. -ldl /usr/lib/libelf.a $(PTHREAD_LIBS)
+   LIBS=-L/usr/lib -L. -ldl -lelf $(PTHREAD_LIBS)
    DESTDIR=/usr
 else
 ifeq ($(shell uname -s), Darwin)
@@ -79,7 +101,9 @@ ifeq ($(shell uname -o), Cygwin)
    PCAP_LIB=-lpacket -lwpcap
 else
    CFLAGS+=-I/usr/include/libelf -D_FILE_OFFSET_BITS=64
-   LIBS=-L. -ldl /usr/lib/libelf.a -lpthread
+   LIBS=-L. -ldl -lelf -lpthread
+endif
+endif
 endif
 endif
 endif
