common/autoconf/generated-configure.sh

changeset 495
e3182741ade2
parent 494
e64f2cb57d05
child 502
ed9e5635fc80
equal deleted inserted replaced
494:e64f2cb57d05 495:e3182741ade2
765 JDK_UPDATE_VERSION 765 JDK_UPDATE_VERSION
766 JDK_MICRO_VERSION 766 JDK_MICRO_VERSION
767 JDK_MINOR_VERSION 767 JDK_MINOR_VERSION
768 JDK_MAJOR_VERSION 768 JDK_MAJOR_VERSION
769 COMPRESS_JARS 769 COMPRESS_JARS
770 UNLIMITED_CRYPTO
770 CACERTS_FILE 771 CACERTS_FILE
771 TEST_IN_BUILD 772 TEST_IN_BUILD
772 BUILD_HEADLESS 773 BUILD_HEADLESS
773 SUPPORT_HEADFUL 774 SUPPORT_HEADFUL
774 SUPPORT_HEADLESS 775 SUPPORT_HEADLESS
960 with_builddeps_group 961 with_builddeps_group
961 enable_openjdk_only 962 enable_openjdk_only
962 enable_headful 963 enable_headful
963 enable_hotspot_test_in_build 964 enable_hotspot_test_in_build
964 with_cacerts_file 965 with_cacerts_file
966 enable_unlimited_crypto
965 with_boot_jdk 967 with_boot_jdk
966 with_boot_jdk_jvmargs 968 with_boot_jdk_jvmargs
967 with_add_source_root 969 with_add_source_root
968 with_override_source_root 970 with_override_source_root
969 with_adds_and_overrides 971 with_adds_and_overrides
1645 [disabled] 1647 [disabled]
1646 --disable-headful disable building headful support (graphical UI 1648 --disable-headful disable building headful support (graphical UI
1647 support) [enabled] 1649 support) [enabled]
1648 --enable-hotspot-test-in-build 1650 --enable-hotspot-test-in-build
1649 run the Queens test after Hotspot build [disabled] 1651 run the Queens test after Hotspot build [disabled]
1652 --enable-unlimited-crypto
1653 Enable unlimited crypto policy [disabled]
1650 --disable-debug-symbols disable generation of debug symbols [enabled] 1654 --disable-debug-symbols disable generation of debug symbols [enabled]
1651 --disable-zip-debug-info 1655 --disable-zip-debug-info
1652 disable zipping of debug-info files [enabled] 1656 disable zipping of debug-info files [enabled]
1653 --disable-macosx-runtime-support 1657 --disable-macosx-runtime-support
1654 disable the use of MacOSX Java runtime support 1658 disable the use of MacOSX Java runtime support
3659 # definitions. It is replaced with custom functionality when building 3663 # definitions. It is replaced with custom functionality when building
3660 # custom sources. 3664 # custom sources.
3661 #CUSTOM_AUTOCONF_INCLUDE 3665 #CUSTOM_AUTOCONF_INCLUDE
3662 3666
3663 # Do not change or remove the following line, it is needed for consistency checks: 3667 # Do not change or remove the following line, it is needed for consistency checks:
3664 DATE_WHEN_GENERATED=1351257228 3668 DATE_WHEN_GENERATED=1351539315
3665 3669
3666 ############################################################################### 3670 ###############################################################################
3667 # 3671 #
3668 # Initialization / Boot-strapping 3672 # Initialization / Boot-strapping
3669 # 3673 #
6904 if test "x$READLINK" != x; then 6908 if test "x$READLINK" != x; then
6905 SCRIPT=`$READLINK -f $SCRIPT` 6909 SCRIPT=`$READLINK -f $SCRIPT`
6906 else 6910 else
6907 STARTDIR=$PWD 6911 STARTDIR=$PWD
6908 COUNTER=0 6912 COUNTER=0
6909 DIR=`$DIRNAME $SCRIPT` 6913 sym_link_dir=`$DIRNAME $SCRIPT`
6910 FILE=`$BASENAME $SCRIPT` 6914 sym_link_file=`$BASENAME $SCRIPT`
6911 while test $COUNTER -lt 20; do 6915 while test $COUNTER -lt 20; do
6912 ISLINK=`$LS -l $DIR/$FILE | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` 6916 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
6913 if test "x$ISLINK" == x; then 6917 if test "x$ISLINK" == x; then
6914 # This is not a symbolic link! We are done! 6918 # This is not a symbolic link! We are done!
6915 break 6919 break
6916 fi 6920 fi
6917 # The link might be relative! We have to use cd to travel safely. 6921 # The link might be relative! We have to use cd to travel safely.
6918 cd $DIR 6922 cd $sym_link_dir
6919 # ... and we must get the to the absolute path, not one using symbolic links. 6923 # ... and we must get the to the absolute path, not one using symbolic links.
6920 cd `pwd -P` 6924 cd `pwd -P`
6921 cd `$DIRNAME $ISLINK` 6925 cd `$DIRNAME $ISLINK`
6922 DIR=`$THEPWDCMD` 6926 sym_link_dir=`$THEPWDCMD`
6923 FILE=`$BASENAME $ISLINK` 6927 sym_link_file=`$BASENAME $ISLINK`
6924 let COUNTER=COUNTER+1 6928 let COUNTER=COUNTER+1
6925 done 6929 done
6926 cd $STARTDIR 6930 cd $STARTDIR
6927 SCRIPT=$DIR/$FILE 6931 SCRIPT=$sym_link_dir/$sym_link_file
6928 fi 6932 fi
6929 fi 6933 fi
6930 6934
6931 AUTOCONF_DIR=`cd \`$DIRNAME $SCRIPT\`; $THEPWDCMD` 6935 AUTOCONF_DIR=`cd \`$DIRNAME $SCRIPT\`; $THEPWDCMD`
6932 6936
7561 7565
7562 # To properly create a configuration name, we need to have the OpenJDK target 7566 # To properly create a configuration name, we need to have the OpenJDK target
7563 # and options (variants and debug level) parsed. 7567 # and options (variants and debug level) parsed.
7564 7568
7565 7569
7566 { $as_echo "$as_me:${as_lineno-$LINENO}: checking what configuration name to use" >&5
7567 $as_echo_n "checking what configuration name to use... " >&6; }
7568 7570
7569 # Check whether --with-conf-name was given. 7571 # Check whether --with-conf-name was given.
7570 if test "${with_conf_name+set}" = set; then : 7572 if test "${with_conf_name+set}" = set; then :
7571 withval=$with_conf_name; CONF_NAME=${with_conf_name} 7573 withval=$with_conf_name; CONF_NAME=${with_conf_name}
7572 fi 7574 fi
7591 # directory name as configuration name, otherwise use the complete path. 7593 # directory name as configuration name, otherwise use the complete path.
7592 if test "x${CONF_NAME}" = x; then 7594 if test "x${CONF_NAME}" = x; then
7593 CONF_NAME=`$ECHO $CURDIR | $SED -e "s!^${SRC_ROOT}/build/!!"` 7595 CONF_NAME=`$ECHO $CURDIR | $SED -e "s!^${SRC_ROOT}/build/!!"`
7594 fi 7596 fi
7595 OUTPUT_ROOT="$CURDIR" 7597 OUTPUT_ROOT="$CURDIR"
7596 fi 7598
7599 # WARNING: This might be a bad thing to do. You need to be sure you want to
7600 # have a configuration in this directory. Do some sanity checks!
7601
7602 if test ! -e "$OUTPUT_ROOT/spec.gmk"; then
7603 # If we have a spec.gmk, we have run here before and we are OK. Otherwise, check for
7604 # other files
7605 files_present=`$LS $OUTPUT_ROOT`
7606 if test "x$files_present" != x; then
7607 { $as_echo "$as_me:${as_lineno-$LINENO}: Current directory is $CURDIR." >&5
7608 $as_echo "$as_me: Current directory is $CURDIR." >&6;}
7609 { $as_echo "$as_me:${as_lineno-$LINENO}: Since this is not the source root, configure will output the configuration here" >&5
7610 $as_echo "$as_me: Since this is not the source root, configure will output the configuration here" >&6;}
7611 { $as_echo "$as_me:${as_lineno-$LINENO}: (as opposed to creating a configuration in <src_root>/build/<conf-name>)." >&5
7612 $as_echo "$as_me: (as opposed to creating a configuration in <src_root>/build/<conf-name>)." >&6;}
7613 { $as_echo "$as_me:${as_lineno-$LINENO}: However, this directory is not empty. This is not allowed, since it could" >&5
7614 $as_echo "$as_me: However, this directory is not empty. This is not allowed, since it could" >&6;}
7615 { $as_echo "$as_me:${as_lineno-$LINENO}: seriously mess up just about everything." >&5
7616 $as_echo "$as_me: seriously mess up just about everything." >&6;}
7617 { $as_echo "$as_me:${as_lineno-$LINENO}: Try 'cd $SRC_ROOT' and restart configure" >&5
7618 $as_echo "$as_me: Try 'cd $SRC_ROOT' and restart configure" >&6;}
7619 { $as_echo "$as_me:${as_lineno-$LINENO}: (or create a new empty directory and cd to it)." >&5
7620 $as_echo "$as_me: (or create a new empty directory and cd to it)." >&6;}
7621 as_fn_error $? "Will not continue creating configuration in $CURDIR" "$LINENO" 5
7622 fi
7623 fi
7624 fi
7625 { $as_echo "$as_me:${as_lineno-$LINENO}: checking what configuration name to use" >&5
7626 $as_echo_n "checking what configuration name to use... " >&6; }
7597 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CONF_NAME" >&5 7627 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CONF_NAME" >&5
7598 $as_echo "$CONF_NAME" >&6; } 7628 $as_echo "$CONF_NAME" >&6; }
7599 7629
7600 7630
7601 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then 7631 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
10332 fi 10362 fi
10333 10363
10334 10364
10335 ############################################################################### 10365 ###############################################################################
10336 # 10366 #
10367 # Enable or disable unlimited crypto
10368 #
10369 # Check whether --enable-unlimited-crypto was given.
10370 if test "${enable_unlimited_crypto+set}" = set; then :
10371 enableval=$enable_unlimited_crypto;
10372 else
10373 enable_unlimited_crypto=no
10374 fi
10375
10376 if test "x$enable_unlimited_crypto" = "xyes"; then
10377 UNLIMITED_CRYPTO=true
10378 else
10379 UNLIMITED_CRYPTO=false
10380 fi
10381
10382
10383 ###############################################################################
10384 #
10337 # Compress jars 10385 # Compress jars
10338 # 10386 #
10339 COMPRESS_JARS=false 10387 COMPRESS_JARS=false
10340 10388
10341 10389
11541 if test "x$READLINK" != x; then 11589 if test "x$READLINK" != x; then
11542 BINARY=`$READLINK -f $BINARY` 11590 BINARY=`$READLINK -f $BINARY`
11543 else 11591 else
11544 STARTDIR=$PWD 11592 STARTDIR=$PWD
11545 COUNTER=0 11593 COUNTER=0
11546 DIR=`$DIRNAME $BINARY` 11594 sym_link_dir=`$DIRNAME $BINARY`
11547 FILE=`$BASENAME $BINARY` 11595 sym_link_file=`$BASENAME $BINARY`
11548 while test $COUNTER -lt 20; do 11596 while test $COUNTER -lt 20; do
11549 ISLINK=`$LS -l $DIR/$FILE | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` 11597 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
11550 if test "x$ISLINK" == x; then 11598 if test "x$ISLINK" == x; then
11551 # This is not a symbolic link! We are done! 11599 # This is not a symbolic link! We are done!
11552 break 11600 break
11553 fi 11601 fi
11554 # The link might be relative! We have to use cd to travel safely. 11602 # The link might be relative! We have to use cd to travel safely.
11555 cd $DIR 11603 cd $sym_link_dir
11556 # ... and we must get the to the absolute path, not one using symbolic links. 11604 # ... and we must get the to the absolute path, not one using symbolic links.
11557 cd `pwd -P` 11605 cd `pwd -P`
11558 cd `$DIRNAME $ISLINK` 11606 cd `$DIRNAME $ISLINK`
11559 DIR=`$THEPWDCMD` 11607 sym_link_dir=`$THEPWDCMD`
11560 FILE=`$BASENAME $ISLINK` 11608 sym_link_file=`$BASENAME $ISLINK`
11561 let COUNTER=COUNTER+1 11609 let COUNTER=COUNTER+1
11562 done 11610 done
11563 cd $STARTDIR 11611 cd $STARTDIR
11564 BINARY=$DIR/$FILE 11612 BINARY=$sym_link_dir/$sym_link_file
11565 fi 11613 fi
11566 fi 11614 fi
11567 11615
11568 BOOT_JDK=`dirname "$BINARY"` 11616 BOOT_JDK=`dirname "$BINARY"`
11569 BOOT_JDK=`cd "$BOOT_JDK/.."; pwd` 11617 BOOT_JDK=`cd "$BOOT_JDK/.."; pwd`
17821 if test "x$READLINK" != x; then 17869 if test "x$READLINK" != x; then
17822 TEST_COMPILER=`$READLINK -f $TEST_COMPILER` 17870 TEST_COMPILER=`$READLINK -f $TEST_COMPILER`
17823 else 17871 else
17824 STARTDIR=$PWD 17872 STARTDIR=$PWD
17825 COUNTER=0 17873 COUNTER=0
17826 DIR=`$DIRNAME $TEST_COMPILER` 17874 sym_link_dir=`$DIRNAME $TEST_COMPILER`
17827 FILE=`$BASENAME $TEST_COMPILER` 17875 sym_link_file=`$BASENAME $TEST_COMPILER`
17828 while test $COUNTER -lt 20; do 17876 while test $COUNTER -lt 20; do
17829 ISLINK=`$LS -l $DIR/$FILE | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` 17877 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
17830 if test "x$ISLINK" == x; then 17878 if test "x$ISLINK" == x; then
17831 # This is not a symbolic link! We are done! 17879 # This is not a symbolic link! We are done!
17832 break 17880 break
17833 fi 17881 fi
17834 # The link might be relative! We have to use cd to travel safely. 17882 # The link might be relative! We have to use cd to travel safely.
17835 cd $DIR 17883 cd $sym_link_dir
17836 # ... and we must get the to the absolute path, not one using symbolic links. 17884 # ... and we must get the to the absolute path, not one using symbolic links.
17837 cd `pwd -P` 17885 cd `pwd -P`
17838 cd `$DIRNAME $ISLINK` 17886 cd `$DIRNAME $ISLINK`
17839 DIR=`$THEPWDCMD` 17887 sym_link_dir=`$THEPWDCMD`
17840 FILE=`$BASENAME $ISLINK` 17888 sym_link_file=`$BASENAME $ISLINK`
17841 let COUNTER=COUNTER+1 17889 let COUNTER=COUNTER+1
17842 done 17890 done
17843 cd $STARTDIR 17891 cd $STARTDIR
17844 TEST_COMPILER=$DIR/$FILE 17892 TEST_COMPILER=$sym_link_dir/$sym_link_file
17845 fi 17893 fi
17846 fi 17894 fi
17847 17895
17848 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEST_COMPILER" >&5 17896 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEST_COMPILER" >&5
17849 $as_echo "$TEST_COMPILER" >&6; } 17897 $as_echo "$TEST_COMPILER" >&6; }
18229 if test "x$READLINK" != x; then 18277 if test "x$READLINK" != x; then
18230 PROPER_COMPILER_CC=`$READLINK -f $PROPER_COMPILER_CC` 18278 PROPER_COMPILER_CC=`$READLINK -f $PROPER_COMPILER_CC`
18231 else 18279 else
18232 STARTDIR=$PWD 18280 STARTDIR=$PWD
18233 COUNTER=0 18281 COUNTER=0
18234 DIR=`$DIRNAME $PROPER_COMPILER_CC` 18282 sym_link_dir=`$DIRNAME $PROPER_COMPILER_CC`
18235 FILE=`$BASENAME $PROPER_COMPILER_CC` 18283 sym_link_file=`$BASENAME $PROPER_COMPILER_CC`
18236 while test $COUNTER -lt 20; do 18284 while test $COUNTER -lt 20; do
18237 ISLINK=`$LS -l $DIR/$FILE | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` 18285 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
18238 if test "x$ISLINK" == x; then 18286 if test "x$ISLINK" == x; then
18239 # This is not a symbolic link! We are done! 18287 # This is not a symbolic link! We are done!
18240 break 18288 break
18241 fi 18289 fi
18242 # The link might be relative! We have to use cd to travel safely. 18290 # The link might be relative! We have to use cd to travel safely.
18243 cd $DIR 18291 cd $sym_link_dir
18244 # ... and we must get the to the absolute path, not one using symbolic links. 18292 # ... and we must get the to the absolute path, not one using symbolic links.
18245 cd `pwd -P` 18293 cd `pwd -P`
18246 cd `$DIRNAME $ISLINK` 18294 cd `$DIRNAME $ISLINK`
18247 DIR=`$THEPWDCMD` 18295 sym_link_dir=`$THEPWDCMD`
18248 FILE=`$BASENAME $ISLINK` 18296 sym_link_file=`$BASENAME $ISLINK`
18249 let COUNTER=COUNTER+1 18297 let COUNTER=COUNTER+1
18250 done 18298 done
18251 cd $STARTDIR 18299 cd $STARTDIR
18252 PROPER_COMPILER_CC=$DIR/$FILE 18300 PROPER_COMPILER_CC=$sym_link_dir/$sym_link_file
18253 fi 18301 fi
18254 fi 18302 fi
18255 18303
18256 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROPER_COMPILER_CC" >&5 18304 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROPER_COMPILER_CC" >&5
18257 $as_echo "$PROPER_COMPILER_CC" >&6; } 18305 $as_echo "$PROPER_COMPILER_CC" >&6; }
19276 if test "x$READLINK" != x; then 19324 if test "x$READLINK" != x; then
19277 TEST_COMPILER=`$READLINK -f $TEST_COMPILER` 19325 TEST_COMPILER=`$READLINK -f $TEST_COMPILER`
19278 else 19326 else
19279 STARTDIR=$PWD 19327 STARTDIR=$PWD
19280 COUNTER=0 19328 COUNTER=0
19281 DIR=`$DIRNAME $TEST_COMPILER` 19329 sym_link_dir=`$DIRNAME $TEST_COMPILER`
19282 FILE=`$BASENAME $TEST_COMPILER` 19330 sym_link_file=`$BASENAME $TEST_COMPILER`
19283 while test $COUNTER -lt 20; do 19331 while test $COUNTER -lt 20; do
19284 ISLINK=`$LS -l $DIR/$FILE | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` 19332 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
19285 if test "x$ISLINK" == x; then 19333 if test "x$ISLINK" == x; then
19286 # This is not a symbolic link! We are done! 19334 # This is not a symbolic link! We are done!
19287 break 19335 break
19288 fi 19336 fi
19289 # The link might be relative! We have to use cd to travel safely. 19337 # The link might be relative! We have to use cd to travel safely.
19290 cd $DIR 19338 cd $sym_link_dir
19291 # ... and we must get the to the absolute path, not one using symbolic links. 19339 # ... and we must get the to the absolute path, not one using symbolic links.
19292 cd `pwd -P` 19340 cd `pwd -P`
19293 cd `$DIRNAME $ISLINK` 19341 cd `$DIRNAME $ISLINK`
19294 DIR=`$THEPWDCMD` 19342 sym_link_dir=`$THEPWDCMD`
19295 FILE=`$BASENAME $ISLINK` 19343 sym_link_file=`$BASENAME $ISLINK`
19296 let COUNTER=COUNTER+1 19344 let COUNTER=COUNTER+1
19297 done 19345 done
19298 cd $STARTDIR 19346 cd $STARTDIR
19299 TEST_COMPILER=$DIR/$FILE 19347 TEST_COMPILER=$sym_link_dir/$sym_link_file
19300 fi 19348 fi
19301 fi 19349 fi
19302 19350
19303 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEST_COMPILER" >&5 19351 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEST_COMPILER" >&5
19304 $as_echo "$TEST_COMPILER" >&6; } 19352 $as_echo "$TEST_COMPILER" >&6; }
19684 if test "x$READLINK" != x; then 19732 if test "x$READLINK" != x; then
19685 PROPER_COMPILER_CXX=`$READLINK -f $PROPER_COMPILER_CXX` 19733 PROPER_COMPILER_CXX=`$READLINK -f $PROPER_COMPILER_CXX`
19686 else 19734 else
19687 STARTDIR=$PWD 19735 STARTDIR=$PWD
19688 COUNTER=0 19736 COUNTER=0
19689 DIR=`$DIRNAME $PROPER_COMPILER_CXX` 19737 sym_link_dir=`$DIRNAME $PROPER_COMPILER_CXX`
19690 FILE=`$BASENAME $PROPER_COMPILER_CXX` 19738 sym_link_file=`$BASENAME $PROPER_COMPILER_CXX`
19691 while test $COUNTER -lt 20; do 19739 while test $COUNTER -lt 20; do
19692 ISLINK=`$LS -l $DIR/$FILE | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` 19740 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
19693 if test "x$ISLINK" == x; then 19741 if test "x$ISLINK" == x; then
19694 # This is not a symbolic link! We are done! 19742 # This is not a symbolic link! We are done!
19695 break 19743 break
19696 fi 19744 fi
19697 # The link might be relative! We have to use cd to travel safely. 19745 # The link might be relative! We have to use cd to travel safely.
19698 cd $DIR 19746 cd $sym_link_dir
19699 # ... and we must get the to the absolute path, not one using symbolic links. 19747 # ... and we must get the to the absolute path, not one using symbolic links.
19700 cd `pwd -P` 19748 cd `pwd -P`
19701 cd `$DIRNAME $ISLINK` 19749 cd `$DIRNAME $ISLINK`
19702 DIR=`$THEPWDCMD` 19750 sym_link_dir=`$THEPWDCMD`
19703 FILE=`$BASENAME $ISLINK` 19751 sym_link_file=`$BASENAME $ISLINK`
19704 let COUNTER=COUNTER+1 19752 let COUNTER=COUNTER+1
19705 done 19753 done
19706 cd $STARTDIR 19754 cd $STARTDIR
19707 PROPER_COMPILER_CXX=$DIR/$FILE 19755 PROPER_COMPILER_CXX=$sym_link_dir/$sym_link_file
19708 fi 19756 fi
19709 fi 19757 fi
19710 19758
19711 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROPER_COMPILER_CXX" >&5 19759 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROPER_COMPILER_CXX" >&5
19712 $as_echo "$PROPER_COMPILER_CXX" >&6; } 19760 $as_echo "$PROPER_COMPILER_CXX" >&6; }
20037 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 20085 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
20038 20086
20039 20087
20040 ### Locate other tools 20088 ### Locate other tools
20041 20089
20042 if test "x$OPENJDK_TARGET_OS" != xwindows; then 20090 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
20043 ac_ext=m 20091 ac_ext=m
20044 ac_cpp='$OBJCPP $CPPFLAGS' 20092 ac_cpp='$OBJCPP $CPPFLAGS'
20045 ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' 20093 ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5'
20046 ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 20094 ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
20047 ac_compiler_gnu=$ac_cv_objc_compiler_gnu 20095 ac_compiler_gnu=$ac_cv_objc_compiler_gnu

mercurial