Added RTA --flo
[libfirm] / configure.in
index b2610e4..9363246 100644 (file)
@@ -21,6 +21,7 @@ dnl if other files should be generated just add them to ac_output_files
 ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/debug/Makefile \
                ir/tv/Makefile ir/common/Makefile ir/ident/Makefile ir/ir/Makefile \
                ir/ana/Makefile ir/tr/Makefile ir/st/Makefile ir/stat/Makefile \
+               ir/opt/Makefile \
                testprograms/Makefile firmjni/Makefile firmjni/testprograms/Makefile \
                libfirm.doxygen"
 
@@ -98,16 +99,13 @@ dnl -------------------------
 AC_ARG_ENABLE(heapanalysis, [  --enable-heapanalysis       Compile with heap analysis.],
         [enable_heapanalysis=$enableval], [enable_heapanalysis="no"])
 if test "$enable_heapanalysis" = "no"; then
-  AC_DEFINE(DO_HEAPANALYSIS, 0, [Don't compile with heap analysis])
   AC_MSG_RESULT([heapanalysis disabled])
 else
-  AC_DEFINE(DO_HEAPANALYSIS, 1, [Compile with heap analysis])
+  AC_DEFINE(DO_HEAPANALYSIS)
   AC_MSG_RESULT([heapanalysis enabled])
 fi
 AC_SUBST(enable_heapanalysis)
 
-dnl to be used!! AM_CONDITIONAL(FIRM_HEAPANALYSIS, test "$enable_heapanalysis" != "no")
-
 dnl disable linking of libiberty parts (xmalloc, xprintf, obstack, ...)
 dnl ----------------------
 AC_ARG_ENABLE(libiberty,