< prev index next >

common/autoconf/generated-configure.sh

Print this page

        

*** 835,844 **** --- 835,845 ---- JDK_UPDATE_VERSION JDK_MICRO_VERSION JDK_MINOR_VERSION JDK_MAJOR_VERSION USER_RELEASE_SUFFIX + ENABLE_JFR COMPRESS_JARS UNLIMITED_CRYPTO CACERTS_FILE TEST_IN_BUILD BUILD_HEADLESS
*** 1049,1058 **** --- 1050,1060 ---- with_builddeps_group enable_headful enable_hotspot_test_in_build with_cacerts_file enable_unlimited_crypto + enable_jfr with_milestone with_update_version with_user_release_suffix with_build_number with_copyright_year
*** 1826,1835 **** --- 1828,1838 ---- support) [enabled] --enable-hotspot-test-in-build run the Queens test after Hotspot build [disabled] --enable-unlimited-crypto Enable unlimited crypto policy [disabled] + --enable-jfr Enable Java Flight Recorder support [enabled] --disable-debug-symbols disable generation of debug symbols [enabled] --disable-zip-debug-info disable zipping of debug-info files [enabled] --enable-macosx-runtime-support Deprecated. Option is kept for backwards
*** 4335,4345 **** # 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=1539613812 ############################################################################### # # Initialization / Boot-strapping # --- 4338,4348 ---- # 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=1547643366 ############################################################################### # # Initialization / Boot-strapping #
*** 19755,19764 **** --- 19758,19791 ---- # COMPRESS_JARS=false + ############################################################################### + # + # Enable or disable JFR + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build jfr" >&5 + $as_echo_n "checking whether to build jfr... " >&6; } + # Check whether --enable-jfr was given. + if test "${enable_jfr+set}" = set; then : + enableval=$enable_jfr; + else + enable_jfr=yes + fi + + if test "x$enable_jfr" = "xno"; then + ENABLE_JFR=false + elif test "x$enable_jfr" = "xyes"; then + ENABLE_JFR=true + else + as_fn_error $? "--enable-jfr must either be set to yes or no" "$LINENO" 5 + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ENABLE_JFR" >&5 + $as_echo "$ENABLE_JFR" >&6; } + + # Source the version numbers . $AUTOCONF_DIR/version-numbers # Get the settings from parameters
< prev index next >