From: Christian Thalinger Date: Sat, 14 Jun 2008 14:58:47 +0000 (+0200) Subject: * configure.ac (AC_INIT): Bumped version to 1.1.0pre. X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=commitdiff_plain;h=f6256e64c9984906b438d2dbb43b341f06bcc56e * configure.ac (AC_INIT): Bumped version to 1.1.0pre. (OPT_CFLAGS): Set -O0. --- diff --git a/configure.ac b/configure.ac index 87204291f..5f654f7be 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ dnl 02110-1301, USA. dnl Process this file with autoconf to produce a configure script. -AC_INIT(cacao, 0.99, cacao@cacaojvm.org) +AC_INIT(cacao, 1.1.0pre, cacao@cacaojvm.org) AC_CONFIG_SRCDIR(src/cacao/cacao.c) AC_CANONICAL_HOST AC_PREREQ(2.59) @@ -37,7 +37,7 @@ AC_PREFIX_DEFAULT(/usr/local/cacao) dnl set optimization and debugging for all architectures and systems if test x"$CFLAGS" = "x"; then - OPT_CFLAGS="-O2 -g" + OPT_CFLAGS="-O0 -g" else OPT_CFLAGS=$CFLAGS fi