allow x86_64 or amd64 for the X86_64 systems

This commit is contained in:
kytv
2011-09-19 17:42:26 +00:00
parent 8aaf9a1c5e
commit 8ee6503e54
2 changed files with 3 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ Linux*)
arch="x86";;
esac
case ${arch} in
x86_64)
x86_64 | amd64)
PLATFORM_LIST="${X86_64_PLATFORMS}"
TARGET="-linux-X86_64-";;
ia64)
@@ -115,7 +115,7 @@ NetBSD*|FreeBSD*|OpenBSD*)
arch="x86";;
esac
case ${arch} in
x86_64)
x86_64|amd64)
PLATFORM_LIST="${X86_64_PLATFORMS}"
TARGET="-${BSDTYPE}-X86_64-";;
ia64)

View File

@@ -61,7 +61,7 @@ Linux*|OpenBSD*|NetBSD*|FreeBSD*|SunOS*)
fi
fi
case `uname -m` in
x86_64*)
x86_64*|amd64)
LINKFLAGS="-shared -Wl,-soname,libjcpuid-x86_64-${UNIXTYPE}.so"
LIBFILE="lib/freenet/support/CPUInformation/libjcpuid-x86_64-${UNIXTYPE}.so";;
ia64*)