< prev index next >

common/autoconf/generated-configure.sh

Print this page

        

*** 823,832 **** --- 823,835 ---- JAVAC_CHECK COOKED_BUILD_NUMBER COOKED_JDK_UPDATE_VERSION JDK_VERSION COPYRIGHT_YEAR + VENDOR_URL_VM_BUG + VENDOR_URL_BUG + VENDOR_URL COMPANY_NAME MACOSX_BUNDLE_ID_BASE MACOSX_BUNDLE_NAME_BASE JDK_RC_PLATFORM_NAME PRODUCT_SUFFIX
*** 1056,1065 **** --- 1059,1071 ---- with_milestone with_update_version with_user_release_suffix with_build_number with_vendor_name + with_vendor_url + with_vendor_bug_url + with_vendor_vm_bug_url with_copyright_year with_boot_jdk with_boot_jdk_jvmargs with_add_source_root with_override_source_root
*** 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 --- 1895,1914 ---- --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. Among others, used to set the ! 'java.vendor' and 'java.vm.vendor' system ! properties. [not specified] ! --with-vendor-url Set the 'java.vendor.url' system property [not ! specified] ! --with-vendor-bug-url Set the 'java.vendor.url.bug' system property [not ! specified] ! --with-vendor-vm-bug-url ! Sets the bug URL which will be displayed when the VM ! crashes [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
*** 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 # --- 4373,4383 ---- # 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=1553405262 ############################################################################### # # Initialization / Boot-strapping #
*** 19881,19896 **** 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; fi --- 19896,19961 ---- 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 ! elif test "x$with_vendor_name" != x; then ! # Only set COMPANY_NAME if '--with-vendor-name' was used and is not empty. ! # Otherwise we will use the value from "version-numbers" included above. COMPANY_NAME="$with_vendor_name" fi + # The vendor URL, if any + + # Check whether --with-vendor-url was given. + if test "${with_vendor_url+set}" = set; then : + withval=$with_vendor_url; + fi + + if test "x$with_vendor_url" = xyes; then + as_fn_error $? "--with-vendor-url must have a value" "$LINENO" 5 + elif ! [[ $with_vendor_url =~ ^[[:print:]]*$ ]] ; then + as_fn_error $? "--with-vendor-url contains non-printing characters: $with_vendor_url" "$LINENO" 5 + else + VENDOR_URL="$with_vendor_url" + fi + + + # The vendor bug URL, if any + + # Check whether --with-vendor-bug-url was given. + if test "${with_vendor_bug_url+set}" = set; then : + withval=$with_vendor_bug_url; + fi + + if test "x$with_vendor_bug_url" = xyes; then + as_fn_error $? "--with-vendor-bug-url must have a value" "$LINENO" 5 + elif ! [[ $with_vendor_bug_url =~ ^[[:print:]]*$ ]] ; then + as_fn_error $? "--with-vendor-bug-url contains non-printing characters: $with_vendor_bug_url" "$LINENO" 5 + else + VENDOR_URL_BUG="$with_vendor_bug_url" + fi + + + # The vendor VM bug URL, if any + + # Check whether --with-vendor-vm-bug-url was given. + if test "${with_vendor_vm_bug_url+set}" = set; then : + withval=$with_vendor_vm_bug_url; + fi + + if test "x$with_vendor_vm_bug_url" = xyes; then + as_fn_error $? "--with-vendor-vm-bug-url must have a value" "$LINENO" 5 + elif ! [[ $with_vendor_vm_bug_url =~ ^[[:print:]]*$ ]] ; then + as_fn_error $? "--with-vendor-vm-bug-url contains non-printing characters: $with_vendor_vm_bug_url" "$LINENO" 5 + else + VENDOR_URL_VM_BUG="$with_vendor_vm_bug_url" + fi + + # Check whether --with-copyright-year was given. if test "${with_copyright_year+set}" = set; then : withval=$with_copyright_year; fi
< prev index next >