< prev index next >

make/autoconf/generated-configure.sh

Print this page
rev 48460 : 8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag

*** 898,907 **** --- 898,910 ---- VERSION_PRE VERSION_PATCH VERSION_UPDATE VERSION_INTERIM VERSION_FEATURE + VENDOR_URL_VM_BUG + VENDOR_URL_BUG + VENDOR_URL COMPANY_NAME MACOSX_BUNDLE_ID_BASE MACOSX_BUNDLE_NAME_BASE HOTSPOT_VM_DISTRO JDK_RC_PLATFORM_NAME
*** 1144,1153 **** --- 1147,1159 ---- with_build_number with_version_major with_version_minor with_version_security with_vendor_name + with_vendor_url + with_vendor_bug_url + with_vendor_vm_bug_url with_version_string with_version_pre with_version_opt with_version_build with_version_feature
*** 2068,2078 **** compatibility and is ignored --with-version-minor Deprecated. Option is kept for backwards compatibility and is ignored --with-version-security Deprecated. Option is kept for backwards compatibility and is ignored ! --with-vendor-name Set vendor name [not specified] --with-version-string Set version string [calculated] --with-version-pre Set the base part of the version 'PRE' field (pre-release identifier) ['internal'] --with-version-opt Set version 'OPT' field (build metadata) [<timestamp>.<user>.<dirname>] --- 2074,2093 ---- compatibility and is ignored --with-version-minor Deprecated. Option is kept for backwards compatibility and is ignored --with-version-security Deprecated. Option is kept for backwards compatibility and is ignored ! --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-version-string Set version string [calculated] --with-version-pre Set the base part of the version 'PRE' field (pre-release identifier) ['internal'] --with-version-opt Set version 'OPT' field (build metadata) [<timestamp>.<user>.<dirname>]
*** 5170,5180 **** # 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=1513805283 ############################################################################### # # Initialization / Boot-strapping # --- 5185,5195 ---- # 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=1516204158 ############################################################################### # # Initialization / Boot-strapping #
*** 25050,25065 **** 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 # Override version from arguments # If --with-version-string is set, process it first. It is possible to # override parts with more specific flags, since these are processed later. --- 25065,25130 ---- 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 + + # Override version from arguments # If --with-version-string is set, process it first. It is possible to # override parts with more specific flags, since these are processed later.
< prev index next >