Implement log file support.
[mono.git] / configure.in
index 3469a5f86939105dfc25b5714dfffc4a22ddbfc4..baef3449ddb4dba2378438bd4ffface57bbfd2ec 100644 (file)
@@ -30,10 +30,13 @@ AM_PROG_LIBTOOL
 
 AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h)
 
+# for mono/metadata/debug-symfile.c
+AC_CHECK_HEADERS(elf.h)
+
 # not 64 bit clean in cross-compile
 AC_CHECK_SIZEOF(void *, 4)
 
-CFLAGS='-g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations'
+CFLAGS='-g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs  -Wshadow -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings'
 
 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
 if test "x$PKG_CONFIG" = "xno"; then
@@ -76,7 +79,7 @@ AC_SUBST(GMODULE_CFLAGS)
 AC_SUBST(GMODULE_LIBS)
 
 AC_CHECK_LIB(gc, GC_malloc, found_boehm="yes")
-gc=none
+gc=auto
 AC_ARG_WITH(gc, [  --with-gc=boehm,none],[gc=$with_gc])
 
 case "x$gc" in
@@ -89,17 +92,21 @@ case "x$gc" in
                AC_SUBST(HAVE_BOEHM_GC)
                LIBS="$LIBS -lgc"
                ;;
+       xnone)
+               AC_MSG_WARN("Compiling mono without GC.")
+               ;;
        *)
 dnl When the JIT works with libgc, use this chunk.
 dnl            # If libgc was found, use it.  Otherwise just warn.
-dnl            if test "x$found_boehm" != "xyes"; then
-dnl                    AC_MSG_WARN("Compiling mono without GC.")
-dnl            else
-dnl                    AC_DEFINE(HAVE_BOEHM_GC)
-dnl                    AC_SUBST(HAVE_BOEHM_GC)
-dnl                    LIBS="$LIBS -lgc"
-dnl            fi
-               AC_MSG_WARN("Compiling mono without GC.")
+               if test "x$found_boehm" != "xyes"; then
+                       AC_MSG_WARN("Compiling mono without GC.")
+               else
+                       AC_DEFINE(HAVE_BOEHM_GC)
+                       AC_SUBST(HAVE_BOEHM_GC)
+                       LIBS="$LIBS -lgc"
+                       gc="boehm"
+               fi
+dnl            AC_MSG_WARN("Compiling mono without GC.")
                ;;
 esac
 
@@ -457,6 +464,7 @@ AC_SUBST(CFLAGS)
 AC_OUTPUT([
 Makefile
 mono/Makefile
+mono/utils/Makefile
 mono/metadata/Makefile
 mono/dis/Makefile
 mono/cil/Makefile
@@ -467,7 +475,6 @@ mono/arch/sparc/Makefile
 mono/arch/arm/Makefile
 mono/interpreter/Makefile
 mono/tests/Makefile
-mono/wrapper/Makefile
 mono/monoburg/Makefile
 mono/monograph/Makefile
 mono/jit/Makefile
@@ -476,10 +483,11 @@ runtime/Makefile
 scripts/Makefile
 man/Makefile
 doc/Makefile
+docs/Makefile
 ])
 
 echo "
 
        GC:     $gc
 
-"
\ No newline at end of file
+"