From a6e29202a775a5641c7d299cf10ecfa93519a578 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Tue, 4 Jun 2002 18:25:29 +0000 Subject: [PATCH] r2104: *** empty log message *** --- ChangeLog | 5 +++++ configure | 4 ++-- configure.ac | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d80afd3..1e56fa9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,13 @@ Jun 1, 2002 Version 3.5.4 * Print version number in log window with About command + * Fix problem with captions not showing on some windows. + * Disable status bar on 3d views + * Fix bug in configure.ac that prevented using compiler + optimizations. + May 29, 2002 Version 3.5.3 * Added support for g++ 3.04 compiler diff --git a/configure b/configure index 658cd91..8bf3a1f 100755 --- a/configure +++ b/configure @@ -7329,7 +7329,7 @@ cat >>confdefs.h <<\_ACEOF _ACEOF else - CFLAGS="$CFLAGS -O3 -DNDEBUG -fomit-frame-pointer" + CFLAGS="$CFLAGS -O3 -DNDEBUG -fomit-frame-pointer -funroll-loops" cat >>confdefs.h <<\_ACEOF #define NDEBUG 1 @@ -7338,7 +7338,7 @@ _ACEOF fi if test "${pthread}" = "true" ; then - CFLAGS="$FLAGS -pthread -D_REENTRANT" + CFLAGS="$CFLAGS -pthread -D_REENTRANT" cat >>confdefs.h <<\_ACEOF #define HAVE_WXTHREADS 1 diff --git a/configure.ac b/configure.ac index 6632e39..d3d612c 100644 --- a/configure.ac +++ b/configure.ac @@ -118,12 +118,12 @@ if test "$debug" = "true" ; then CFLAGS="$CFLAGS -g -DDEBUG" AC_DEFINE(DEBUG,1,[turn on debugging]) else - CFLAGS="$CFLAGS -O3 -DNDEBUG -fomit-frame-pointer" + CFLAGS="$CFLAGS -O3 -DNDEBUG -fomit-frame-pointer -funroll-loops" AC_DEFINE(NDEBUG,1,[no debugging]) fi if test "${pthread}" = "true" ; then - CFLAGS="$FLAGS -pthread -D_REENTRANT" + CFLAGS="$CFLAGS -pthread -D_REENTRANT" AC_DEFINE(HAVE_WXTHREADS,1,[have wxthreads library]) fi -- 2.34.1