< prev index next >

common/autoconf/generated-configure.sh

Print this page

        

*** 823,835 **** JAVAC_CHECK COOKED_BUILD_NUMBER COOKED_JDK_UPDATE_VERSION JDK_VERSION COPYRIGHT_YEAR MACOSX_BUNDLE_ID_BASE MACOSX_BUNDLE_NAME_BASE - COMPANY_NAME JDK_RC_PLATFORM_NAME PRODUCT_SUFFIX PRODUCT_NAME LAUNCHER_NAME MILESTONE --- 823,835 ---- JAVAC_CHECK COOKED_BUILD_NUMBER COOKED_JDK_UPDATE_VERSION JDK_VERSION COPYRIGHT_YEAR + COMPANY_NAME MACOSX_BUNDLE_ID_BASE MACOSX_BUNDLE_NAME_BASE JDK_RC_PLATFORM_NAME PRODUCT_SUFFIX PRODUCT_NAME LAUNCHER_NAME MILESTONE
*** 1055,1064 **** --- 1055,1065 ---- enable_unlimited_crypto with_milestone with_update_version with_user_release_suffix with_build_number + with_vendor_name with_copyright_year with_boot_jdk with_boot_jdk_jvmargs with_add_source_root with_override_source_root
*** 1888,1897 **** --- 1889,1899 ---- --with-update-version Set update version value for build [b00] --with-user-release-suffix Add a custom string to the version string if build number isn't set.[username_builddateb00] --with-build-number Set build number value for build [b00] + --with-vendor-name Set vendor name [not specified] --with-copyright-year Set copyright year value for build [current year] --with-boot-jdk path to Boot JDK (used to bootstrap build) [probed] --with-boot-jdk-jvmargs specify JVM arguments to be passed to all invocations of the Boot JDK, overriding the default values, e.g --with-boot-jdk-jvmargs="-Xmx8G
*** 4356,4366 **** # definitions. It is replaced with custom functionality when building # custom sources. #CUSTOM_AUTOCONF_INCLUDE # Do not change or remove the following line, it is needed for consistency checks: ! DATE_WHEN_GENERATED=1552344461 ############################################################################### # # Initialization / Boot-strapping # --- 4358,4368 ---- # definitions. It is replaced with custom functionality when building # custom sources. #CUSTOM_AUTOCONF_INCLUDE # Do not change or remove the following line, it is needed for consistency checks: ! DATE_WHEN_GENERATED=1552671404 ############################################################################### # # Initialization / Boot-strapping #
*** 19869,19878 **** --- 19871,19895 ---- + # The vendor name, if any + + # Check whether --with-vendor-name was given. + if test "${with_vendor_name+set}" = set; then : + withval=$with_vendor_name; + fi + + if test "x$with_vendor_name" = xyes; then + as_fn_error $? "--with-vendor-name must have a value" "$LINENO" 5 + elif ! [[ $with_vendor_name =~ ^[[:print:]]*$ ]] ; then + as_fn_error $? "--with--vendor-name contains non-printing characters: $with_vendor_name" "$LINENO" 5 + else + COMPANY_NAME="$with_vendor_name" + fi + # Check whether --with-copyright-year was given. if test "${with_copyright_year+set}" = set; then : withval=$with_copyright_year;
< prev index next >