$NetBSD: patch-aa,v 1.5 2001/05/08 23:23:49 dmcmahill Exp $ Set up compilation flags for NetBSD --- makefile.orig Sat Feb 10 22:21:58 2001 +++ makefile Tue May 8 18:57:45 2001 @@ -9,5 +9,5 @@ # overridden in the make command line, as in "PREFIX=/foo make install" # (the directory is only used when installing). -DESTDIR = $(PREFIX)/usr/bin +DESTDIR = $(PREFIX)/bin # Standard flags for all architectures @@ -22,24 +22,26 @@ # Handle host architecture if specified ifeq ($(HOST_ARCH),i386) -CFLAGS += -O3 -malign-double -DNO_ASM_BYTESWAP -endif +CFLAGS += -O3 -DNO_ASM_BYTESWAP +else ifeq ($(HOST_ARCH),i586) -CFLAGS += -O3 -malign-double -march=pentium -endif +CFLAGS += -O3 +else ifeq ($(HOST_ARCH),i686) -CFLAGS += -O3 -malign-double -march=pentiumpro -endif +CFLAGS += -O3 +else ifeq ($(HOST_ARCH),alpha) CFLAGS += -O2 -DNO_ASM_BYTESWAP -endif -ifeq ($(HOST_ARCH),other) +else CFLAGS += -O3 -DNO_ASM_BYTESWAP -endif +endif # alpha +endif # i686 +endif # i586 +endif # i386 # Uncomment these lines for NetBSD, with either the unproven-pthreads # or pth packages -#CFLAGS += -I/usr/pkg/pthreads/include -I/usr/pkg/include -#LFLAGS += -L/usr/pkg/pthreads/lib -R/usr/pkg/pthreads -#LFLAGS += -L/usr/pkg/lib -R/usr/pkg/pthreads/lib +CFLAGS += -I${PREFIX}/pthreads/include -I${PREFIX}/include +LFLAGS += -L${PREFIX}/pthreads/lib -R${PREFIX}/pthreads +LFLAGS += -L${PREFIX}/lib -R${PREFIX}/pthreads/lib # Reverse the comments below to disable Compressed CKD Dasd support