X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=configure.in;h=8999dc2d8aed6efd44cecfa5d0c867c36d51b263;hb=afd2f7145cdcfcd54b80f6394af8faacb2409ced;hp=531ff0ad6a61ad47dc544bf6a097874b6a0a2733;hpb=25fa08e7d8acdc08ea56c06ed9074227b6f1dadd;p=libfirm diff --git a/configure.in b/configure.in index 531ff0ad6..8999dc2d8 100644 --- a/configure.in +++ b/configure.in @@ -189,22 +189,33 @@ AC_SUBST(enable_libcore) dnl enable ILP solver support dnl -------------------------------- +AC_MSG_CHECKING([for ilp solver support]) AC_ARG_ENABLE(ilp, [ --enable-ilp enable ilp solver], [if test "$enableval"=yes; then AC_DEFINE(WITH_ILP) fi]) AC_SUBST(enable_ilp) +if test "$enable_ilp" == yes; then + AC_MSG_RESULT([enabled]) +else + AC_MSG_RESULT([disabled]) +fi dnl enable JVM calling from Firm dnl -------------------------------- +AC_MSG_CHECKING([for jvm support]) AC_ARG_ENABLE(jvm, [ --enable-jvm enable to call the jvm], [if test "$enableval"=yes; then AC_DEFINE(WITH_JVM) fi]) AC_SUBST(enable_jvm) - +if test "$enable_jvm" == yes; then + AC_MSG_RESULT([enabled]) +else + AC_MSG_RESULT([disabled]) +fi dnl enable wchar_t support for identifiers