< prev index next >

common/autoconf/generated-configure.sh

Print this page




 783 OVERRIDE_SRC_ROOT
 784 ADD_SRC_ROOT
 785 JDK_TOPDIR
 786 NASHORN_TOPDIR
 787 HOTSPOT_TOPDIR
 788 JAXWS_TOPDIR
 789 JAXP_TOPDIR
 790 CORBA_TOPDIR
 791 LANGTOOLS_TOPDIR
 792 JAVA_FLAGS_SMALL
 793 JAVA_FLAGS_BIG
 794 JAVA_FLAGS
 795 JAVAC_FLAGS
 796 BOOT_JDK_SOURCETARGET
 797 BOOT_JDK
 798 BOOT_TOOLSJAR
 799 BOOT_RTJAR
 800 JAVA_CHECK
 801 JAVAC_CHECK
 802 COOKED_BUILD_NUMBER

 803 JDK_VERSION
 804 COPYRIGHT_YEAR
 805 MACOSX_BUNDLE_ID_BASE
 806 MACOSX_BUNDLE_NAME_BASE
 807 COMPANY_NAME
 808 JDK_RC_PLATFORM_NAME
 809 PRODUCT_SUFFIX
 810 PRODUCT_NAME
 811 LAUNCHER_NAME
 812 MILESTONE
 813 JDK_BUILD_NUMBER
 814 JDK_UPDATE_VERSION
 815 JDK_MICRO_VERSION
 816 JDK_MINOR_VERSION
 817 JDK_MAJOR_VERSION
 818 USER_RELEASE_SUFFIX
 819 COMPRESS_JARS
 820 UNLIMITED_CRYPTO
 821 CACERTS_FILE
 822 TEST_IN_BUILD


3861 # Check if the VS env variables were setup prior to running configure.
3862 # If not, then find vcvarsall.bat and run it automatically, and integrate
3863 # the set env variables into the spec file.
3864 
3865 
3866 
3867 
3868 
3869 
3870 
3871 
3872 
3873 
3874 
3875 # This line needs to be here, verbatim, after all includes and the dummy hook
3876 # definitions. It is replaced with custom functionality when building
3877 # custom sources.
3878 #CUSTOM_AUTOCONF_INCLUDE
3879 
3880 # Do not change or remove the following line, it is needed for consistency checks:
3881 DATE_WHEN_GENERATED=1430836833
3882 
3883 ###############################################################################
3884 #
3885 # Initialization / Boot-strapping
3886 #
3887 # The bootstrapping process needs to solve the "chicken or the egg" problem,
3888 # thus it jumps back and forth, each time gaining something needed later on.
3889 #
3890 ###############################################################################
3891 
3892 # Basic initialization that must happen first of all
3893 
3894   # Save the original command line. This is passed to us by the wrapper configure script.
3895 
3896   DATE_WHEN_CONFIGURED=`LANG=C date`
3897 
3898   { $as_echo "$as_me:${as_lineno-$LINENO}: Configuration created at $DATE_WHEN_CONFIGURED." >&5
3899 $as_echo "$as_me: Configuration created at $DATE_WHEN_CONFIGURED." >&6;}
3900   { $as_echo "$as_me:${as_lineno-$LINENO}: configure script generated at timestamp $DATE_WHEN_GENERATED." >&5
3901 $as_echo "$as_me: configure script generated at timestamp $DATE_WHEN_GENERATED." >&6;}


11277 if test "${with_copyright_year+set}" = set; then :
11278   withval=$with_copyright_year;
11279 fi
11280 
11281   if test "x$with_copyright_year" = xyes; then
11282     as_fn_error $? "Copyright year must have a value" "$LINENO" 5
11283   elif test "x$with_copyright_year" != x; then
11284     COPYRIGHT_YEAR="$with_copyright_year"
11285   else
11286     COPYRIGHT_YEAR=`date +'%Y'`
11287   fi
11288 
11289 
11290   if test "x$JDK_UPDATE_VERSION" != x; then
11291     JDK_VERSION="${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_MICRO_VERSION}_${JDK_UPDATE_VERSION}"
11292   else
11293     JDK_VERSION="${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_MICRO_VERSION}"
11294   fi
11295 
11296 






11297   COOKED_BUILD_NUMBER=`$ECHO $JDK_BUILD_NUMBER | $SED -e 's/^b//' -e 's/^0//'`
11298 
11299 
11300 
11301 ###############################################################################
11302 #
11303 # Setup BootJDK, used to bootstrap the build.
11304 #
11305 ###############################################################################
11306 
11307 
11308   BOOT_JDK_FOUND=no
11309 
11310 # Check whether --with-boot-jdk was given.
11311 if test "${with_boot_jdk+set}" = set; then :
11312   withval=$with_boot_jdk;
11313 fi
11314 
11315 
11316   # We look for the Boot JDK through various means, going from more certain to


24177 
24178 
24179 
24180 
24181     RC_FLAGS="-nologo -l 0x409 -r"
24182     if test "x$VARIANT" = xOPT; then :
24183 
24184     RC_FLAGS="$RC_FLAGS -d NDEBUG"
24185 
24186 fi
24187 
24188   # The version variables used to create RC_FLAGS may be overridden
24189   # in a custom configure script, or possibly the command line.
24190   # Let those variables be expanded at make time in spec.gmk.
24191   # The \$ are escaped to the shell, and the $(...) variables
24192   # are evaluated by make.
24193   RC_FLAGS="$RC_FLAGS \
24194       -d \"JDK_BUILD_ID=\$(FULL_VERSION)\" \
24195       -d \"JDK_COMPANY=\$(COMPANY_NAME)\" \
24196       -d \"JDK_COMPONENT=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) binary\" \
24197       -d \"JDK_VER=\$(JDK_MINOR_VERSION).\$(JDK_MICRO_VERSION).\$(if \$(JDK_UPDATE_VERSION),\$(JDK_UPDATE_VERSION),0).\$(COOKED_BUILD_NUMBER)\" \
24198       -d \"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\" \
24199       -d \"JDK_NAME=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) \$(JDK_MINOR_VERSION) \$(JDK_UPDATE_META_TAG)\" \
24200       -d \"JDK_FVER=\$(JDK_MINOR_VERSION),\$(JDK_MICRO_VERSION),\$(if \$(JDK_UPDATE_VERSION),\$(JDK_UPDATE_VERSION),0),\$(COOKED_BUILD_NUMBER)\""
24201 
24202   # lib.exe is used to create static libraries.
24203   # Extract the first word of "lib", so it can be a program name with args.
24204 set dummy lib; ac_word=$2
24205 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
24206 $as_echo_n "checking for $ac_word... " >&6; }
24207 if ${ac_cv_prog_WINAR+:} false; then :
24208   $as_echo_n "(cached) " >&6
24209 else
24210   if test -n "$WINAR"; then
24211   ac_cv_prog_WINAR="$WINAR" # Let the user override the test.
24212 else
24213 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
24214 for as_dir in $PATH
24215 do
24216   IFS=$as_save_IFS
24217   test -z "$as_dir" && as_dir=.
24218     for ac_exec_ext in '' $ac_executable_extensions; do
24219   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
24220     ac_cv_prog_WINAR="lib"




 783 OVERRIDE_SRC_ROOT
 784 ADD_SRC_ROOT
 785 JDK_TOPDIR
 786 NASHORN_TOPDIR
 787 HOTSPOT_TOPDIR
 788 JAXWS_TOPDIR
 789 JAXP_TOPDIR
 790 CORBA_TOPDIR
 791 LANGTOOLS_TOPDIR
 792 JAVA_FLAGS_SMALL
 793 JAVA_FLAGS_BIG
 794 JAVA_FLAGS
 795 JAVAC_FLAGS
 796 BOOT_JDK_SOURCETARGET
 797 BOOT_JDK
 798 BOOT_TOOLSJAR
 799 BOOT_RTJAR
 800 JAVA_CHECK
 801 JAVAC_CHECK
 802 COOKED_BUILD_NUMBER
 803 COOKED_JDK_UPDATE_VERSION
 804 JDK_VERSION
 805 COPYRIGHT_YEAR
 806 MACOSX_BUNDLE_ID_BASE
 807 MACOSX_BUNDLE_NAME_BASE
 808 COMPANY_NAME
 809 JDK_RC_PLATFORM_NAME
 810 PRODUCT_SUFFIX
 811 PRODUCT_NAME
 812 LAUNCHER_NAME
 813 MILESTONE
 814 JDK_BUILD_NUMBER
 815 JDK_UPDATE_VERSION
 816 JDK_MICRO_VERSION
 817 JDK_MINOR_VERSION
 818 JDK_MAJOR_VERSION
 819 USER_RELEASE_SUFFIX
 820 COMPRESS_JARS
 821 UNLIMITED_CRYPTO
 822 CACERTS_FILE
 823 TEST_IN_BUILD


3862 # Check if the VS env variables were setup prior to running configure.
3863 # If not, then find vcvarsall.bat and run it automatically, and integrate
3864 # the set env variables into the spec file.
3865 
3866 
3867 
3868 
3869 
3870 
3871 
3872 
3873 
3874 
3875 
3876 # This line needs to be here, verbatim, after all includes and the dummy hook
3877 # definitions. It is replaced with custom functionality when building
3878 # custom sources.
3879 #CUSTOM_AUTOCONF_INCLUDE
3880 
3881 # Do not change or remove the following line, it is needed for consistency checks:
3882 DATE_WHEN_GENERATED=1432114361
3883 
3884 ###############################################################################
3885 #
3886 # Initialization / Boot-strapping
3887 #
3888 # The bootstrapping process needs to solve the "chicken or the egg" problem,
3889 # thus it jumps back and forth, each time gaining something needed later on.
3890 #
3891 ###############################################################################
3892 
3893 # Basic initialization that must happen first of all
3894 
3895   # Save the original command line. This is passed to us by the wrapper configure script.
3896 
3897   DATE_WHEN_CONFIGURED=`LANG=C date`
3898 
3899   { $as_echo "$as_me:${as_lineno-$LINENO}: Configuration created at $DATE_WHEN_CONFIGURED." >&5
3900 $as_echo "$as_me: Configuration created at $DATE_WHEN_CONFIGURED." >&6;}
3901   { $as_echo "$as_me:${as_lineno-$LINENO}: configure script generated at timestamp $DATE_WHEN_GENERATED." >&5
3902 $as_echo "$as_me: configure script generated at timestamp $DATE_WHEN_GENERATED." >&6;}


11278 if test "${with_copyright_year+set}" = set; then :
11279   withval=$with_copyright_year;
11280 fi
11281 
11282   if test "x$with_copyright_year" = xyes; then
11283     as_fn_error $? "Copyright year must have a value" "$LINENO" 5
11284   elif test "x$with_copyright_year" != x; then
11285     COPYRIGHT_YEAR="$with_copyright_year"
11286   else
11287     COPYRIGHT_YEAR=`date +'%Y'`
11288   fi
11289 
11290 
11291   if test "x$JDK_UPDATE_VERSION" != x; then
11292     JDK_VERSION="${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_MICRO_VERSION}_${JDK_UPDATE_VERSION}"
11293   else
11294     JDK_VERSION="${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_MICRO_VERSION}"
11295   fi
11296 
11297 
11298 # The cooked update version used to encode trailing letters in the update
11299   # version into a trailing number. That is no longer needed, but need to
11300   # keep the format in 8u for compatibility.
11301   COOKED_JDK_UPDATE_VERSION="${JDK_UPDATE_VERSION}0"
11302 
11303 
11304   COOKED_BUILD_NUMBER=`$ECHO $JDK_BUILD_NUMBER | $SED -e 's/^b//' -e 's/^0//'`
11305 
11306 
11307 
11308 ###############################################################################
11309 #
11310 # Setup BootJDK, used to bootstrap the build.
11311 #
11312 ###############################################################################
11313 
11314 
11315   BOOT_JDK_FOUND=no
11316 
11317 # Check whether --with-boot-jdk was given.
11318 if test "${with_boot_jdk+set}" = set; then :
11319   withval=$with_boot_jdk;
11320 fi
11321 
11322 
11323   # We look for the Boot JDK through various means, going from more certain to


24184 
24185 
24186 
24187 
24188     RC_FLAGS="-nologo -l 0x409 -r"
24189     if test "x$VARIANT" = xOPT; then :
24190 
24191     RC_FLAGS="$RC_FLAGS -d NDEBUG"
24192 
24193 fi
24194 
24195   # The version variables used to create RC_FLAGS may be overridden
24196   # in a custom configure script, or possibly the command line.
24197   # Let those variables be expanded at make time in spec.gmk.
24198   # The \$ are escaped to the shell, and the $(...) variables
24199   # are evaluated by make.
24200   RC_FLAGS="$RC_FLAGS \
24201       -d \"JDK_BUILD_ID=\$(FULL_VERSION)\" \
24202       -d \"JDK_COMPANY=\$(COMPANY_NAME)\" \
24203       -d \"JDK_COMPONENT=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) binary\" \
24204       -d \"JDK_VER=\$(JDK_MINOR_VERSION).\$(JDK_MICRO_VERSION).\$(COOKED_JDK_UPDATE_VERSION).\$(COOKED_BUILD_NUMBER)\" \
24205       -d \"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\" \
24206       -d \"JDK_NAME=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) \$(JDK_MINOR_VERSION) \$(JDK_UPDATE_META_TAG)\" \
24207       -d \"JDK_FVER=\$(JDK_MINOR_VERSION),\$(JDK_MICRO_VERSION),\$(COOKED_JDK_UPDATE_VERSION),\$(COOKED_BUILD_NUMBER)\""
24208 
24209   # lib.exe is used to create static libraries.
24210   # Extract the first word of "lib", so it can be a program name with args.
24211 set dummy lib; ac_word=$2
24212 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
24213 $as_echo_n "checking for $ac_word... " >&6; }
24214 if ${ac_cv_prog_WINAR+:} false; then :
24215   $as_echo_n "(cached) " >&6
24216 else
24217   if test -n "$WINAR"; then
24218   ac_cv_prog_WINAR="$WINAR" # Let the user override the test.
24219 else
24220 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
24221 for as_dir in $PATH
24222 do
24223   IFS=$as_save_IFS
24224   test -z "$as_dir" && as_dir=.
24225     for ac_exec_ext in '' $ac_executable_extensions; do
24226   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
24227     ac_cv_prog_WINAR="lib"


< prev index next >