< prev index next >

make/autoconf/libraries.m4

Print this page

        

*** 31,40 **** --- 31,41 ---- m4_include([lib-freetype.m4]) m4_include([lib-std.m4]) m4_include([lib-x11.m4]) m4_include([lib-fontconfig.m4]) m4_include([lib-tests.m4]) + m4_include([lib-softfloat.m4]) ################################################################################ # Determine which libraries are needed for this configuration ################################################################################ AC_DEFUN_ONCE([LIB_DETERMINE_DEPENDENCIES],
*** 77,86 **** --- 78,94 ---- NEEDS_LIB_ALSA=true else NEEDS_LIB_ALSA=false fi + if (test "x$OPENJDK_TARGET_CPU" == xarm && + (test "x$ARM_FLOAT_TYPE" = "xsflt" || test "x$ARM_FLOAT_TYPE" = "xvfp-sflt" )); then + USES_LIB_SOFTFLOAT=true + else + USES_LIB_SOFTFLOAT=false + fi + # Check if ffi is needed if HOTSPOT_CHECK_JVM_VARIANT(zero); then NEEDS_LIB_FFI=true else NEEDS_LIB_FFI=false
*** 96,105 **** --- 104,114 ---- LIB_SETUP_X11 LIB_SETUP_CUPS LIB_SETUP_FONTCONFIG LIB_SETUP_FREETYPE LIB_SETUP_ALSA + LIB_SETUP_SOFTFLOAT LIB_SETUP_LIBFFI LIB_SETUP_BUNDLED_LIBS LIB_SETUP_MISC_LIBS LIB_SETUP_SOLARIS_STLPORT LIB_TESTS_SETUP_GRAALUNIT
< prev index next >