r2104: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 4 Jun 2002 18:25:29 +0000 (18:25 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 4 Jun 2002 18:25:29 +0000 (18:25 +0000)
ChangeLog
configure
configure.ac

index d80afd35da81355b1c91ee317688140eb5247150..1e56fa974dcaed17eda8d9750e29d24ed10d765d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,13 @@
 Jun 1, 2002  Version 3.5.4
        * Print version number in log window with About command
 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.
        * Fix problem with captions not showing on some windows.
+       
        * Disable status bar on 3d views
        
        * 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
        
 May 29, 2002  Version 3.5.3
        * Added support for g++ 3.04 compiler
        
index 658cd915546d37ed9b5217b8792da4d008bd65cb..8bf3a1f02b393db8c333c090e82178ce1efa746b 100755 (executable)
--- a/configure
+++ b/configure
@@ -7329,7 +7329,7 @@ cat >>confdefs.h <<\_ACEOF
 _ACEOF
 
 else
 _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
 
 cat >>confdefs.h <<\_ACEOF
 #define NDEBUG 1
@@ -7338,7 +7338,7 @@ _ACEOF
 fi
 
 if test "${pthread}" = "true" ; then
 fi
 
 if test "${pthread}" = "true" ; then
-  CFLAGS="$FLAGS -pthread -D_REENTRANT"
+  CFLAGS="$CFLAGS -pthread -D_REENTRANT"
 
 cat >>confdefs.h <<\_ACEOF
 #define HAVE_WXTHREADS 1
 
 cat >>confdefs.h <<\_ACEOF
 #define HAVE_WXTHREADS 1
index 6632e39bd281d984c42cbae747ec4a54dc474288..d3d612cb9bf505f9c0367407357f0166124c6ed9 100644 (file)
@@ -118,12 +118,12 @@ if test "$debug" = "true" ; then
   CFLAGS="$CFLAGS -g -DDEBUG"
   AC_DEFINE(DEBUG,1,[turn on debugging])
 else
   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
   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
 
   AC_DEFINE(HAVE_WXTHREADS,1,[have wxthreads library])
 fi