From: Kevin M. Rosenberg Date: Tue, 4 Jun 2002 18:25:29 +0000 (+0000) Subject: r2104: *** empty log message *** X-Git-Tag: debian-4.5.3-3~224 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=a6e29202a775a5641c7d299cf10ecfa93519a578 r2104: *** empty log message *** --- 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