add docu and prototype for find_value()
[libfirm] / configure.in
index 531ff0a..8999dc2 100644 (file)
@@ -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