8151497: Set REQUIRED_OS_NAME and REQUIRED_OS_VERSION on AIX

Reviewed-by: erikj
This commit is contained in:
Volker Simonis 2016-03-09 11:15:04 +01:00
parent 5e3abca606
commit 2610c1da55
2 changed files with 9 additions and 1 deletions

View file

@ -4862,7 +4862,7 @@ VS_SDK_PLATFORM_NAME_2013=
#CUSTOM_AUTOCONF_INCLUDE #CUSTOM_AUTOCONF_INCLUDE
# Do not change or remove the following line, it is needed for consistency checks: # Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=1456136781 DATE_WHEN_GENERATED=1457518447
############################################################################### ###############################################################################
# #
@ -15118,6 +15118,10 @@ $as_echo "$COMPILE_TYPE" >&6; }
REQUIRED_OS_NAME=Darwin REQUIRED_OS_NAME=Darwin
REQUIRED_OS_VERSION=11.2 REQUIRED_OS_VERSION=11.2
fi fi
if test "x$OPENJDK_TARGET_OS" = "xaix"; then
REQUIRED_OS_NAME=AIX
REQUIRED_OS_VERSION=7.1
fi

View file

@ -406,6 +406,10 @@ AC_DEFUN([PLATFORM_SET_RELEASE_FILE_OS_VALUES],
REQUIRED_OS_NAME=Darwin REQUIRED_OS_NAME=Darwin
REQUIRED_OS_VERSION=11.2 REQUIRED_OS_VERSION=11.2
fi fi
if test "x$OPENJDK_TARGET_OS" = "xaix"; then
REQUIRED_OS_NAME=AIX
REQUIRED_OS_VERSION=7.1
fi
AC_SUBST(REQUIRED_OS_NAME) AC_SUBST(REQUIRED_OS_NAME)
AC_SUBST(REQUIRED_OS_VERSION) AC_SUBST(REQUIRED_OS_VERSION)