common/autoconf/jdk-options.m4

Print this page




 334 # Control wether Hotspot runs Queens test after build.
 335 AC_ARG_ENABLE([hotspot-test-in-build], [AS_HELP_STRING([--enable-hotspot-test-in-build],
 336         [run the Queens test after Hotspot build @<:@disabled@:>@])],,
 337     [enable_hotspot_test_in_build=no])
 338 if test "x$enable_hotspot_test_in_build" = "xyes"; then
 339     TEST_IN_BUILD=true
 340 else
 341     TEST_IN_BUILD=false
 342 fi
 343 AC_SUBST(TEST_IN_BUILD)
 344 
 345 ###############################################################################
 346 #
 347 # Choose cacerts source file
 348 #
 349 AC_ARG_WITH(cacerts-file, [AS_HELP_STRING([--with-cacerts-file],
 350     [specify alternative cacerts file])])
 351 if test "x$with_cacerts_file" != x; then
 352     CACERTS_FILE=$with_cacerts_file
 353 else
 354     if test "x$OPENJDK" = "xtrue"; then
 355         CACERTS_FILE=${SRC_ROOT}/jdk/src/share/lib/security/cacerts
 356     else
 357         CACERTS_FILE=${SRC_ROOT}/jdk/src/closed/share/lib/security/cacerts.internal
 358     fi
 359 fi
 360 AC_SUBST(CACERTS_FILE)
 361 
 362 ###############################################################################
 363 #
 364 # Enable or disable unlimited crypto
 365 #
 366 AC_ARG_ENABLE(unlimited-crypto, [AS_HELP_STRING([--enable-unlimited-crypto],
 367         [Enable unlimited crypto policy @<:@disabled@:>@])],,
 368     [enable_unlimited_crypto=no])
 369 if test "x$enable_unlimited_crypto" = "xyes"; then
 370     UNLIMITED_CRYPTO=true
 371 else
 372     UNLIMITED_CRYPTO=false
 373 fi
 374 AC_SUBST(UNLIMITED_CRYPTO)
 375 
 376 ###############################################################################
 377 #
 378 # Enable or disable the elliptic curve crypto implementation




 334 # Control wether Hotspot runs Queens test after build.
 335 AC_ARG_ENABLE([hotspot-test-in-build], [AS_HELP_STRING([--enable-hotspot-test-in-build],
 336         [run the Queens test after Hotspot build @<:@disabled@:>@])],,
 337     [enable_hotspot_test_in_build=no])
 338 if test "x$enable_hotspot_test_in_build" = "xyes"; then
 339     TEST_IN_BUILD=true
 340 else
 341     TEST_IN_BUILD=false
 342 fi
 343 AC_SUBST(TEST_IN_BUILD)
 344 
 345 ###############################################################################
 346 #
 347 # Choose cacerts source file
 348 #
 349 AC_ARG_WITH(cacerts-file, [AS_HELP_STRING([--with-cacerts-file],
 350     [specify alternative cacerts file])])
 351 if test "x$with_cacerts_file" != x; then
 352     CACERTS_FILE=$with_cacerts_file
 353 else

 354     CACERTS_FILE=${SRC_ROOT}/jdk/src/share/lib/security/cacerts



 355 fi
 356 AC_SUBST(CACERTS_FILE)
 357 
 358 ###############################################################################
 359 #
 360 # Enable or disable unlimited crypto
 361 #
 362 AC_ARG_ENABLE(unlimited-crypto, [AS_HELP_STRING([--enable-unlimited-crypto],
 363         [Enable unlimited crypto policy @<:@disabled@:>@])],,
 364     [enable_unlimited_crypto=no])
 365 if test "x$enable_unlimited_crypto" = "xyes"; then
 366     UNLIMITED_CRYPTO=true
 367 else
 368     UNLIMITED_CRYPTO=false
 369 fi
 370 AC_SUBST(UNLIMITED_CRYPTO)
 371 
 372 ###############################################################################
 373 #
 374 # Enable or disable the elliptic curve crypto implementation