common/autoconf/jdk-options.m4

Print this page




 409   #
 410   # Enable or disable the elliptic curve crypto implementation
 411   #
 412   AC_DEFUN_ONCE([JDKOPT_DETECT_INTREE_EC],
 413   [
 414     AC_MSG_CHECKING([if elliptic curve crypto implementation is present])
 415 
 416     if test -d "${SRC_ROOT}/jdk/src/share/native/sun/security/ec/impl"; then
 417       ENABLE_INTREE_EC=yes
 418       AC_MSG_RESULT([yes])
 419     else
 420       ENABLE_INTREE_EC=no
 421       AC_MSG_RESULT([no])
 422     fi
 423 
 424     AC_SUBST(ENABLE_INTREE_EC)
 425   ])
 426 
 427   ###############################################################################
 428   #













 429   # Compress jars
 430   #
 431   COMPRESS_JARS=false
 432 
 433   AC_SUBST(COMPRESS_JARS)
 434 ])
 435 
 436 ###############################################################################
 437 #
 438 # Setup version numbers
 439 #
 440 AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_VERSION_NUMBERS],
 441 [
 442   # Source the version numbers
 443   . $AUTOCONF_DIR/version-numbers
 444 
 445   # Get the settings from parameters
 446   AC_ARG_WITH(milestone, [AS_HELP_STRING([--with-milestone],
 447       [Set milestone value for build @<:@internal@:>@])])
 448   if test "x$with_milestone" = xyes; then




 409   #
 410   # Enable or disable the elliptic curve crypto implementation
 411   #
 412   AC_DEFUN_ONCE([JDKOPT_DETECT_INTREE_EC],
 413   [
 414     AC_MSG_CHECKING([if elliptic curve crypto implementation is present])
 415 
 416     if test -d "${SRC_ROOT}/jdk/src/share/native/sun/security/ec/impl"; then
 417       ENABLE_INTREE_EC=yes
 418       AC_MSG_RESULT([yes])
 419     else
 420       ENABLE_INTREE_EC=no
 421       AC_MSG_RESULT([no])
 422     fi
 423 
 424     AC_SUBST(ENABLE_INTREE_EC)
 425   ])
 426 
 427   ###############################################################################
 428   #
 429   # --enable-rmiconnector-iiop
 430   #
 431   AC_ARG_ENABLE(rmiconnector-iiop, [AS_HELP_STRING([--enable-rmiconnector-iiop],
 432       [enable the JMX RMIConnector iiop transport  @<:@disabled@:>@])])
 433   if test "x$enable_rmiconnector_iiop" = "xyes"; then
 434     RMICONNECTOR_IIOP=true
 435   else
 436     RMICONNECTOR_IIOP=false
 437   fi
 438   AC_SUBST(RMICONNECTOR_IIOP)
 439 
 440   ###############################################################################
 441   #
 442   # Compress jars
 443   #
 444   COMPRESS_JARS=false
 445 
 446   AC_SUBST(COMPRESS_JARS)
 447 ])
 448 
 449 ###############################################################################
 450 #
 451 # Setup version numbers
 452 #
 453 AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_VERSION_NUMBERS],
 454 [
 455   # Source the version numbers
 456   . $AUTOCONF_DIR/version-numbers
 457 
 458   # Get the settings from parameters
 459   AC_ARG_WITH(milestone, [AS_HELP_STRING([--with-milestone],
 460       [Set milestone value for build @<:@internal@:>@])])
 461   if test "x$with_milestone" = xyes; then