diff options
author | obrien <obrien@FreeBSD.org> | 2005-04-11 08:04:41 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-04-11 08:04:41 +0000 |
commit | 6b02d1b35c173832c085697cf76aa156d04ad843 (patch) | |
tree | 195cb55f1eda849521409154920849cf102b91fa /benchmarks | |
parent | 93ea51bfc3219265c52c39374430d10201b8f436 (diff) | |
download | FreeBSD-ports-6b02d1b35c173832c085697cf76aa156d04ad843.zip FreeBSD-ports-6b02d1b35c173832c085697cf76aa156d04ad843.tar.gz |
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/dkftpbench/Makefile | 2 | ||||
-rw-r--r-- | benchmarks/himenobench/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/dkftpbench/Makefile b/benchmarks/dkftpbench/Makefile index 57782f9..d21ebd5e 100644 --- a/benchmarks/dkftpbench/Makefile +++ b/benchmarks/dkftpbench/Makefile @@ -16,7 +16,7 @@ COMMENT= A FTP benchmark program PLIST_FILES= bin/dkftpbench GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} USE_AUTOCONF_VER=259 USE_AUTOMAKE_VER=14 diff --git a/benchmarks/himenobench/Makefile b/benchmarks/himenobench/Makefile index f105aa3..318f907 100644 --- a/benchmarks/himenobench/Makefile +++ b/benchmarks/himenobench/Makefile @@ -29,7 +29,7 @@ RESTRICTED= "unsure to redistribute" .if defined(WITH_OPTIMIZED_FLAGS) FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations CFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -.if (${MACHINE_ARCH} == "i386" && !${MACHINE_ARCH}== "amd64") +.if (${ARCH} == "i386" && !${ARCH}== "amd64") FFLAGS+= -mfancy-math-387 -mpreferred-stack-boundary=3 -malign-double CFLAGS+= -mfancy-math-387 -mpreferred-stack-boundary=3 -malign-double .endif # i386 |