|
From: <za...@us...> - 2006-02-04 02:05:14
|
Update of /cvsroot/halfs/halfs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13613 Modified Files: configure.ac Log Message: found unhandled exception... stiil need to investigate why it occured Index: configure.ac =================================================================== RCS file: /cvsroot/halfs/halfs/configure.ac,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- configure.ac 14 Jan 2006 00:35:11 -0000 1.1.1.1 +++ configure.ac 4 Feb 2006 02:05:04 -0000 1.2 @@ -47,7 +47,7 @@ AC_ARG_ENABLE(release, AS_HELP_STRING([--enable-release], [Compile release version with usual optimizations]), [if test "$enable_release" == "yes"; then - OPTFLAGS="-g -O3 -fexpensive-optimizations" + OPTFLAGS="-g -O3" fi]) AC_ARG_ENABLE(extra_optimized_release, @@ -189,6 +189,10 @@ if test "$enable_debug" = "yes"; then AC_DEFINE(_DEBUG,,[Enable debugging code]) fi +if test "$enable_extra_optimize" = "yes" -o "$enable_release" = "yes"; then + AC_DEFINE(NDEBUG,,[Disable debugging code]) +fi + AC_DEFINE(FUSE_USE_VERSION, 22, [Enable to use modern FUSE version]) # Prevent direct including of config.h + add gettext macros |