~ubuntu-branches/ubuntu/jaunty/openjdk-6/jaunty-security

« back to all changes in this revision

Viewing changes to configure

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose, Edward Nevill, Matthias Klose
  • Date: 2009-03-02 16:18:01 UTC
  • Revision ID: james.westby@ubuntu.com-20090302161801-rubk3yhm8j0au4y1
Tags: 6b14-0ubuntu17
[ Edward Nevill ]
* Remove VFP from asm loop
* Disble the mauve testsuite for armel.

[Matthias Klose]
* Update IcedTea (20090302).

Show diffs side-by-side

added added

removed removed

Lines of Context:
677
677
XPROTO_CFLAGS
678
678
PKG_CONFIG
679
679
PULSEAUDIO_BIN
 
680
NETBEANS
680
681
WITH_HGREV_FALSE
681
682
WITH_HGREV_TRUE
682
683
HGREV
759
760
ENABLE_GCJWEBPLUGIN_TRUE
760
761
ENABLE_PLUGIN_FALSE
761
762
ENABLE_PLUGIN_TRUE
 
763
WITH_VISUALVM_FALSE
 
764
WITH_VISUALVM_TRUE
762
765
SYSTEM_ANT_DIR
763
766
WITH_OPENJDK_FALSE
764
767
WITH_OPENJDK_TRUE
 
768
SYSTEM_NETBEANS_DIR
765
769
WITH_ICEDTEA_FALSE
766
770
WITH_ICEDTEA_TRUE
767
771
GCC_OLD_FALSE
886
890
with_gcj
887
891
with_hotspot_build
888
892
with_icedtea
 
893
with_netbeans_home
889
894
with_openjdk
890
895
with_ant_home
 
896
enable_visualvm
891
897
enable_liveconnect
892
898
enable_gcjwebplugin
893
899
enable_pulse_java
922
928
enable_shark
923
929
enable_hg
924
930
with_hg_revision
 
931
with_netbeans
925
932
'
926
933
      ac_precious_vars='build_alias
927
934
host_alias
1600
1607
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1601
1608
  --disable-dependency-tracking  speeds up one-time build
1602
1609
  --enable-dependency-tracking   do not reject slow dependency extractors
 
1610
  --enable-visualvm       Enable compilation of visualvm.
1603
1611
  --disable-liveconnect   Disable compilation of browser plugin
1604
1612
  --enable-gcjwebplugin   Build the GCJ Web Plugin plugin (deprecated)
1605
1613
  --enable-pulse-java     Enable pulse-java - an audio mixer spi that uses
1619
1627
  --with-gcj              location of gcj for natively compiling ecj
1620
1628
  --with-hotspot-build    the HotSpot build to use
1621
1629
  --with-icedtea          build IcedTea with system-installed IcedTea
 
1630
  --with-netbeans-home    NetBeans home directory (default is
 
1631
                          /usr/share/netbeans)
1622
1632
  --with-openjdk          build IcedTea with system-installed OpenJDK
1623
1633
  --with-ant-home         Ant home directory (default is /usr/share/ant)
1624
1634
  --with-parallel-jobs    build IcedTea using the specified number of parallel
1651
1661
  --with-cacao-home       CACAO home directory [[default=/usr/local/cacao]]
1652
1662
  --with-cacao-src-zip    specify the location of the CACAO source zip
1653
1663
  --with-hg-revision      the Mercurial revision to use
 
1664
  --with-netbeans         specify location of netbeans
1654
1665
 
1655
1666
Some influential environment variables:
1656
1667
  CC          C compiler command
6474
6485
{ $as_echo "$as_me:$LINENO: result: ${with_icedtea}" >&5
6475
6486
$as_echo "${with_icedtea}" >&6; }
6476
6487
 
 
6488
{ $as_echo "$as_me:$LINENO: checking for a NetBeans installation" >&5
 
6489
$as_echo_n "checking for a NetBeans installation... " >&6; }
 
6490
 
 
6491
# Check whether --with-netbeans-home was given.
 
6492
if test "${with_netbeans_home+set}" = set; then
 
6493
  withval=$with_netbeans_home;
 
6494
              if test "x${withval}" = x
 
6495
              then
 
6496
                SYSTEM_NETBEANS_DIR=/usr/share/netbeans
 
6497
              else
 
6498
                SYSTEM_NETBEANS_DIR=${withval}
 
6499
              fi
 
6500
 
 
6501
else
 
6502
 
 
6503
              SYSTEM_NETBEANS_DIR=/usr/share/netbeans
 
6504
 
 
6505
fi
 
6506
 
 
6507
{ $as_echo "$as_me:$LINENO: result: ${SYSTEM_NETBEANS_DIR}" >&5
 
6508
$as_echo "${SYSTEM_NETBEANS_DIR}" >&6; }
 
6509
 
 
6510
 
6477
6511
{ $as_echo "$as_me:$LINENO: checking whether to build using an existing installation of OpenJDK" >&5
6478
6512
$as_echo_n "checking whether to build using an existing installation of OpenJDK... " >&6; }
6479
6513
 
6527
6561
{ $as_echo "$as_me:$LINENO: result: ${SYSTEM_ANT_DIR}" >&5
6528
6562
$as_echo "${SYSTEM_ANT_DIR}" >&6; }
6529
6563
 
 
6564
{ $as_echo "$as_me:$LINENO: checking whether to build VisualVM" >&5
 
6565
$as_echo_n "checking whether to build VisualVM... " >&6; }
 
6566
# Check whether --enable-visualvm was given.
 
6567
if test "${enable_visualvm+set}" = set; then
 
6568
  enableval=$enable_visualvm; enable_visualvm="${enableval}"
 
6569
else
 
6570
  enable_visualvm="no"
 
6571
fi
 
6572
 
 
6573
 if test "x${enable_visualvm}" = "xyes"; then
 
6574
  WITH_VISUALVM_TRUE=
 
6575
  WITH_VISUALVM_FALSE='#'
 
6576
else
 
6577
  WITH_VISUALVM_TRUE='#'
 
6578
  WITH_VISUALVM_FALSE=
 
6579
fi
 
6580
 
 
6581
{ $as_echo "$as_me:$LINENO: result: ${enable_visualvm}" >&5
 
6582
$as_echo "${enable_visualvm}" >&6; }
 
6583
 
6530
6584
{ $as_echo "$as_me:$LINENO: checking whether to build the LiveConnect plugin" >&5
6531
6585
$as_echo_n "checking whether to build the LiveConnect plugin... " >&6; }
6532
6586
# Check whether --enable-liveconnect was given.
6633
6687
if test "${enable_nio2+set}" = set; then
6634
6688
  enableval=$enable_nio2; ENABLE_NIO2="${enableval}"
6635
6689
else
6636
 
  ENABLE_NIO2='yes'
 
6690
  ENABLE_NIO2='no'
6637
6691
fi
6638
6692
 
6639
6693
 if test x$ENABLE_NIO2 = xyes; then
10645
10699
 
10646
10700
 
10647
10701
 
 
10702
if test "x${enable_visualvm}" = "xyes"
 
10703
then
 
10704
 
 
10705
 
 
10706
# Check whether --with-netbeans was given.
 
10707
if test "${with_netbeans+set}" = set; then
 
10708
  withval=$with_netbeans;
 
10709
    if test -f "${withval}"; then
 
10710
      { $as_echo "$as_me:$LINENO: checking netbeans" >&5
 
10711
$as_echo_n "checking netbeans... " >&6; }
 
10712
      NETBEANS="${withval}"
 
10713
      { $as_echo "$as_me:$LINENO: result: ${withval}" >&5
 
10714
$as_echo "${withval}" >&6; }
 
10715
    else
 
10716
      # Extract the first word of ""${withval}"", so it can be a program name with args.
 
10717
set dummy "${withval}"; ac_word=$2
 
10718
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
10719
$as_echo_n "checking for $ac_word... " >&6; }
 
10720
if test "${ac_cv_path_NETBEANS+set}" = set; then
 
10721
  $as_echo_n "(cached) " >&6
 
10722
else
 
10723
  case $NETBEANS in
 
10724
  [\\/]* | ?:[\\/]*)
 
10725
  ac_cv_path_NETBEANS="$NETBEANS" # Let the user override the test with a path.
 
10726
  ;;
 
10727
  *)
 
10728
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
10729
for as_dir in $PATH
 
10730
do
 
10731
  IFS=$as_save_IFS
 
10732
  test -z "$as_dir" && as_dir=.
 
10733
  for ac_exec_ext in '' $ac_executable_extensions; do
 
10734
  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
10735
    ac_cv_path_NETBEANS="$as_dir/$ac_word$ac_exec_ext"
 
10736
    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
10737
    break 2
 
10738
  fi
 
10739
done
 
10740
done
 
10741
IFS=$as_save_IFS
 
10742
 
 
10743
  ;;
 
10744
esac
 
10745
fi
 
10746
NETBEANS=$ac_cv_path_NETBEANS
 
10747
if test -n "$NETBEANS"; then
 
10748
  { $as_echo "$as_me:$LINENO: result: $NETBEANS" >&5
 
10749
$as_echo "$NETBEANS" >&6; }
 
10750
else
 
10751
  { $as_echo "$as_me:$LINENO: result: no" >&5
 
10752
$as_echo "no" >&6; }
 
10753
fi
 
10754
 
 
10755
 
 
10756
    fi
 
10757
 
 
10758
else
 
10759
 
 
10760
    NETBEANS=
 
10761
 
 
10762
fi
 
10763
 
 
10764
  if test -z "${NETBEANS}"; then
 
10765
    # Extract the first word of ""netbeans"", so it can be a program name with args.
 
10766
set dummy "netbeans"; ac_word=$2
 
10767
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
10768
$as_echo_n "checking for $ac_word... " >&6; }
 
10769
if test "${ac_cv_path_NETBEANS+set}" = set; then
 
10770
  $as_echo_n "(cached) " >&6
 
10771
else
 
10772
  case $NETBEANS in
 
10773
  [\\/]* | ?:[\\/]*)
 
10774
  ac_cv_path_NETBEANS="$NETBEANS" # Let the user override the test with a path.
 
10775
  ;;
 
10776
  *)
 
10777
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
10778
for as_dir in $PATH
 
10779
do
 
10780
  IFS=$as_save_IFS
 
10781
  test -z "$as_dir" && as_dir=.
 
10782
  for ac_exec_ext in '' $ac_executable_extensions; do
 
10783
  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
10784
    ac_cv_path_NETBEANS="$as_dir/$ac_word$ac_exec_ext"
 
10785
    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
10786
    break 2
 
10787
  fi
 
10788
done
 
10789
done
 
10790
IFS=$as_save_IFS
 
10791
 
 
10792
  ;;
 
10793
esac
 
10794
fi
 
10795
NETBEANS=$ac_cv_path_NETBEANS
 
10796
if test -n "$NETBEANS"; then
 
10797
  { $as_echo "$as_me:$LINENO: result: $NETBEANS" >&5
 
10798
$as_echo "$NETBEANS" >&6; }
 
10799
else
 
10800
  { $as_echo "$as_me:$LINENO: result: no" >&5
 
10801
$as_echo "no" >&6; }
 
10802
fi
 
10803
 
 
10804
 
 
10805
  fi
 
10806
  if test -z "${NETBEANS}"; then
 
10807
    { { $as_echo "$as_me:$LINENO: error: \"NetBeans was not found.\"" >&5
 
10808
$as_echo "$as_me: error: \"NetBeans was not found.\"" >&2;}
 
10809
   { (exit 1); exit 1; }; }
 
10810
  fi
 
10811
 
 
10812
 
 
10813
fi
 
10814
 
10648
10815
if test "x${enable_pulse_java}" = "xyes"
10649
10816
then
10650
10817
 
13691
13858
 fi
13692
13859
 
13693
13860
 
13694
 
  llvm_components=engine
 
13861
  llvm_components="engine nativecodegen"
13695
13862
  LLVM_CFLAGS=`$LLVM_CONFIG --cflags $llvm_components | \
13696
13863
    sed -e 's/-O.//g' | sed -e 's/-fomit-frame-pointer//g' | \
13697
13864
    sed -e 's/-D_DEBUG//g'`
13884
14051
Usually this means the macro was only invoked conditionally." >&2;}
13885
14052
   { (exit 1); exit 1; }; }
13886
14053
fi
 
14054
if test -z "${WITH_VISUALVM_TRUE}" && test -z "${WITH_VISUALVM_FALSE}"; then
 
14055
  { { $as_echo "$as_me:$LINENO: error: conditional \"WITH_VISUALVM\" was never defined.
 
14056
Usually this means the macro was only invoked conditionally." >&5
 
14057
$as_echo "$as_me: error: conditional \"WITH_VISUALVM\" was never defined.
 
14058
Usually this means the macro was only invoked conditionally." >&2;}
 
14059
   { (exit 1); exit 1; }; }
 
14060
fi
13887
14061
if test -z "${ENABLE_PLUGIN_TRUE}" && test -z "${ENABLE_PLUGIN_FALSE}"; then
13888
14062
  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_PLUGIN\" was never defined.
13889
14063
Usually this means the macro was only invoked conditionally." >&5