8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
Reviewed-by: ihse, alanbur
This commit is contained in:
parent
a467175dda
commit
a8ac920474
@ -428,9 +428,10 @@ AC_DEFUN([BASIC_SETUP_TOOL],
|
|||||||
# Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool
|
# Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool
|
||||||
# $1: variable to set
|
# $1: variable to set
|
||||||
# $2: executable name (or list of names) to look for
|
# $2: executable name (or list of names) to look for
|
||||||
|
# $3: [path]
|
||||||
AC_DEFUN([BASIC_PATH_PROGS],
|
AC_DEFUN([BASIC_PATH_PROGS],
|
||||||
[
|
[
|
||||||
BASIC_SETUP_TOOL($1, [AC_PATH_PROGS($1, $2)])
|
BASIC_SETUP_TOOL($1, [AC_PATH_PROGS($1, $2, , $3)])
|
||||||
])
|
])
|
||||||
|
|
||||||
# Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool
|
# Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool
|
||||||
@ -444,9 +445,10 @@ AC_DEFUN([BASIC_CHECK_TOOLS],
|
|||||||
# Like BASIC_PATH_PROGS but fails if no tool was found.
|
# Like BASIC_PATH_PROGS but fails if no tool was found.
|
||||||
# $1: variable to set
|
# $1: variable to set
|
||||||
# $2: executable name (or list of names) to look for
|
# $2: executable name (or list of names) to look for
|
||||||
|
# $3: [path]
|
||||||
AC_DEFUN([BASIC_REQUIRE_PROGS],
|
AC_DEFUN([BASIC_REQUIRE_PROGS],
|
||||||
[
|
[
|
||||||
BASIC_PATH_PROGS($1, $2)
|
BASIC_PATH_PROGS($1, $2, , $3)
|
||||||
BASIC_CHECK_NONEMPTY($1)
|
BASIC_CHECK_NONEMPTY($1)
|
||||||
])
|
])
|
||||||
|
|
||||||
@ -1065,7 +1067,9 @@ AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS],
|
|||||||
BASIC_PATH_PROGS(HG, hg)
|
BASIC_PATH_PROGS(HG, hg)
|
||||||
BASIC_PATH_PROGS(STAT, stat)
|
BASIC_PATH_PROGS(STAT, stat)
|
||||||
BASIC_PATH_PROGS(TIME, time)
|
BASIC_PATH_PROGS(TIME, time)
|
||||||
BASIC_PATH_PROGS(DTRACE, dtrace)
|
# Dtrace is usually found in /usr/sbin on Solaris, but that directory may not
|
||||||
|
# be in the user path.
|
||||||
|
BASIC_PATH_PROGS(DTRACE, dtrace, $PATH:/usr/sbin)
|
||||||
BASIC_PATH_PROGS(PATCH, [gpatch patch])
|
BASIC_PATH_PROGS(PATCH, [gpatch patch])
|
||||||
# Check if it's GNU time
|
# Check if it's GNU time
|
||||||
IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'`
|
IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'`
|
||||||
|
@ -1111,7 +1111,6 @@ infodir
|
|||||||
docdir
|
docdir
|
||||||
oldincludedir
|
oldincludedir
|
||||||
includedir
|
includedir
|
||||||
runstatedir
|
|
||||||
localstatedir
|
localstatedir
|
||||||
sharedstatedir
|
sharedstatedir
|
||||||
sysconfdir
|
sysconfdir
|
||||||
@ -1390,7 +1389,6 @@ datadir='${datarootdir}'
|
|||||||
sysconfdir='${prefix}/etc'
|
sysconfdir='${prefix}/etc'
|
||||||
sharedstatedir='${prefix}/com'
|
sharedstatedir='${prefix}/com'
|
||||||
localstatedir='${prefix}/var'
|
localstatedir='${prefix}/var'
|
||||||
runstatedir='${localstatedir}/run'
|
|
||||||
includedir='${prefix}/include'
|
includedir='${prefix}/include'
|
||||||
oldincludedir='/usr/include'
|
oldincludedir='/usr/include'
|
||||||
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
||||||
@ -1643,15 +1641,6 @@ do
|
|||||||
| -silent | --silent | --silen | --sile | --sil)
|
| -silent | --silent | --silen | --sile | --sil)
|
||||||
silent=yes ;;
|
silent=yes ;;
|
||||||
|
|
||||||
-runstatedir | --runstatedir | --runstatedi | --runstated \
|
|
||||||
| --runstate | --runstat | --runsta | --runst | --runs \
|
|
||||||
| --run | --ru | --r)
|
|
||||||
ac_prev=runstatedir ;;
|
|
||||||
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
|
|
||||||
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
|
|
||||||
| --run=* | --ru=* | --r=*)
|
|
||||||
runstatedir=$ac_optarg ;;
|
|
||||||
|
|
||||||
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
||||||
ac_prev=sbindir ;;
|
ac_prev=sbindir ;;
|
||||||
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
||||||
@ -1789,7 +1778,7 @@ fi
|
|||||||
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
||||||
datadir sysconfdir sharedstatedir localstatedir includedir \
|
datadir sysconfdir sharedstatedir localstatedir includedir \
|
||||||
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
||||||
libdir localedir mandir runstatedir
|
libdir localedir mandir
|
||||||
do
|
do
|
||||||
eval ac_val=\$$ac_var
|
eval ac_val=\$$ac_var
|
||||||
# Remove trailing slashes.
|
# Remove trailing slashes.
|
||||||
@ -1942,7 +1931,6 @@ Fine tuning of the installation directories:
|
|||||||
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
||||||
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
||||||
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
||||||
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
|
|
||||||
--libdir=DIR object code libraries [EPREFIX/lib]
|
--libdir=DIR object code libraries [EPREFIX/lib]
|
||||||
--includedir=DIR C header files [PREFIX/include]
|
--includedir=DIR C header files [PREFIX/include]
|
||||||
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
||||||
@ -3669,6 +3657,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
|||||||
# Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool
|
# Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool
|
||||||
# $1: variable to set
|
# $1: variable to set
|
||||||
# $2: executable name (or list of names) to look for
|
# $2: executable name (or list of names) to look for
|
||||||
|
# $3: [path]
|
||||||
|
|
||||||
|
|
||||||
# Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool
|
# Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool
|
||||||
@ -3679,6 +3668,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
|||||||
# Like BASIC_PATH_PROGS but fails if no tool was found.
|
# Like BASIC_PATH_PROGS but fails if no tool was found.
|
||||||
# $1: variable to set
|
# $1: variable to set
|
||||||
# $2: executable name (or list of names) to look for
|
# $2: executable name (or list of names) to look for
|
||||||
|
# $3: [path]
|
||||||
|
|
||||||
|
|
||||||
# Like BASIC_SETUP_TOOL but fails if no tool was found.
|
# Like BASIC_SETUP_TOOL but fails if no tool was found.
|
||||||
@ -5103,7 +5093,7 @@ VS_SDK_PLATFORM_NAME_2013=
|
|||||||
#CUSTOM_AUTOCONF_INCLUDE
|
#CUSTOM_AUTOCONF_INCLUDE
|
||||||
|
|
||||||
# Do not change or remove the following line, it is needed for consistency checks:
|
# Do not change or remove the following line, it is needed for consistency checks:
|
||||||
DATE_WHEN_GENERATED=1476265696
|
DATE_WHEN_GENERATED=1476275292
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
@ -22781,6 +22771,8 @@ $as_echo "$tool_specified" >&6; }
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Dtrace is usually found in /usr/sbin on Solaris, but that directory may not
|
||||||
|
# be in the user path.
|
||||||
|
|
||||||
|
|
||||||
# Publish this variable in the help.
|
# Publish this variable in the help.
|
||||||
@ -22803,7 +22795,8 @@ else
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
for as_dir in $PATH
|
as_dummy="$PATH:/usr/sbin"
|
||||||
|
for as_dir in $as_dummy
|
||||||
do
|
do
|
||||||
IFS=$as_save_IFS
|
IFS=$as_save_IFS
|
||||||
test -z "$as_dir" && as_dir=.
|
test -z "$as_dir" && as_dir=.
|
||||||
@ -22861,7 +22854,8 @@ else
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
for as_dir in $PATH
|
as_dummy="$PATH:/usr/sbin"
|
||||||
|
for as_dir in $as_dummy
|
||||||
do
|
do
|
||||||
IFS=$as_save_IFS
|
IFS=$as_save_IFS
|
||||||
test -z "$as_dir" && as_dir=.
|
test -z "$as_dir" && as_dir=.
|
||||||
|
@ -287,7 +287,8 @@ var getJibProfilesProfiles = function (input, common) {
|
|||||||
target_os: "solaris",
|
target_os: "solaris",
|
||||||
target_cpu: "x64",
|
target_cpu: "x64",
|
||||||
dependencies: concat(common.dependencies, "devkit", "cups"),
|
dependencies: concat(common.dependencies, "devkit", "cups"),
|
||||||
configure_args: concat(common.configure_args, "--with-zlib=system"),
|
configure_args: concat(common.configure_args, "--with-zlib=system",
|
||||||
|
"--enable-dtrace"),
|
||||||
default_make_targets: common.default_make_targets
|
default_make_targets: common.default_make_targets
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -295,7 +296,8 @@ var getJibProfilesProfiles = function (input, common) {
|
|||||||
target_os: "solaris",
|
target_os: "solaris",
|
||||||
target_cpu: "sparcv9",
|
target_cpu: "sparcv9",
|
||||||
dependencies: concat(common.dependencies, "devkit", "cups"),
|
dependencies: concat(common.dependencies, "devkit", "cups"),
|
||||||
configure_args: concat(common.configure_args, "--with-zlib=system"),
|
configure_args: concat(common.configure_args, "--with-zlib=system",
|
||||||
|
"--enable-dtrace"),
|
||||||
default_make_targets: common.default_make_targets
|
default_make_targets: common.default_make_targets
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user