common/autoconf/jdk-options.m4

changeset 656
e2057191f6da
parent 602
0d46733cfffb
child 664
15c1642967c9
equal deleted inserted replaced
655:a69761ae281b 656:e2057191f6da
364 fi 364 fi
365 AC_SUBST(UNLIMITED_CRYPTO) 365 AC_SUBST(UNLIMITED_CRYPTO)
366 366
367 ############################################################################### 367 ###############################################################################
368 # 368 #
369 # Enable or disable the elliptic curve crypto implementation
370 #
371 AC_DEFUN_ONCE([JDKOPT_DETECT_INTREE_EC],
372 [
373 AC_MSG_CHECKING([if elliptic curve crypto implementation is present])
374
375 if test -d "${SRC_ROOT}/jdk/src/share/native/sun/security/ec/impl"; then
376 ENABLE_INTREE_EC=yes
377 AC_MSG_RESULT([yes])
378 else
379 ENABLE_INTREE_EC=no
380 AC_MSG_RESULT([no])
381 fi
382
383 AC_SUBST(ENABLE_INTREE_EC)
384 ])
385
386 ###############################################################################
387 #
369 # Compress jars 388 # Compress jars
370 # 389 #
371 COMPRESS_JARS=false 390 COMPRESS_JARS=false
372 391
373 AC_SUBST(COMPRESS_JARS) 392 AC_SUBST(COMPRESS_JARS)

mercurial