* configure.ac (AC_INIT): Bumped version to 0.99.
authorChristian Thalinger <twisti@complang.tuwien.ac.at>
Sat, 14 Jun 2008 12:53:55 +0000 (14:53 +0200)
committerChristian Thalinger <twisti@complang.tuwien.ac.at>
Sat, 14 Jun 2008 12:53:55 +0000 (14:53 +0200)
(OPT_CFLAGS): Set to -O2.

configure.ac

index 32b90969338e1189492e17bae12ce6aa843b05a8..87204291f0b4263af52c3398a7a53468b93b1d53 100644 (file)
@@ -23,7 +23,7 @@ dnl 02110-1301, USA.
 dnl Process this file with autoconf to produce a configure script.
 
 
-AC_INIT(cacao, 0.99rc7, cacao@cacaojvm.org)
+AC_INIT(cacao, 0.99, 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="-O0 -g"
+    OPT_CFLAGS="-O2 -g"
 else
     OPT_CFLAGS=$CFLAGS
 fi