Remove checks for ia64, this is not a supported architecture.

PR:		237104
Approved by:	portmgr
This commit is contained in:
Piotr Kubaj 2019-04-23 17:52:38 +00:00
parent cb162ca9bd
commit 3a69880c81
2 changed files with 4 additions and 4 deletions

View file

@ -1797,9 +1797,9 @@ MAKE_ENV+= SHELL=${MAKE_SHELL} NO_LINT=YES
PATCH_DEPENDS+= ${LOCALBASE}/bin/unzip:archivers/unzip
.endif
# Check the compatibility layer for amd64/ia64
# Check the compatibility layer for amd64
.if ${ARCH} == "amd64" || ${ARCH} =="ia64"
.if ${ARCH} == "amd64"
.if exists(/usr/lib32)
HAVE_COMPAT_IA32_LIBS?= YES
.endif
@ -1813,7 +1813,7 @@ HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; the
_EXPORTED_VARS+= HAVE_COMPAT_IA32_KERN
.if defined(IA32_BINARY_PORT) && ${ARCH} != "i386"
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
.if ${ARCH} == "amd64"
.if !defined(HAVE_COMPAT_IA32_KERN)
IGNORE= requires a kernel with compiled-in IA32 compatibility
.elif !defined(HAVE_COMPAT_IA32_LIBS)

View file

@ -98,7 +98,7 @@ OPSYS!= ${UNAME} -s
.endif
_EXPORTED_VARS+= OPSYS
.if ${ARCH} == "amd64" || ${ARCH} =="ia64"
.if ${ARCH} == "amd64"
.if !defined(HAVE_COMPAT_IA32_KERN)
HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; then echo YES; fi; echo
.if empty(HAVE_COMPAT_IA32_KERN)