Index: config_office/configure.in =================================================================== RCS file: /cvs/tools/config_office/configure.in,v retrieving revision 1.53.2.5 diff -u -r1.53.2.5 configure.in --- config_office/configure.in 27 Jun 2003 14:22:25 -0000 1.53.2.5 +++ config_office/configure.in 27 Jun 2003 16:29:25 -0000 @@ -27,16 +27,17 @@ [ --enable-gcc3 Deprecated: Now has no effect, checks compiler version. ],,) AC_ARG_ENABLE(symbols, -[ --enable-symbols Include debugging symbols in output. Warning - - a complete build needs 8 Gb of space and takes - much longer. (enables -g compiler flag) - +[ --enable-symbols Deprecated: Now has no effect. ],,) AC_ARG_ENABLE(debug, [ --enable-debug: Include debugging symbols from --enable-symbols plus extra debugging code. Extra large build! (enables -g compiler flag and dmake debug=true) ],,) +AC_ARG_ENABLE(crashdump, +[ --enable-crashdump: Include debugging symbols from and enable the + crashdump feature code. Extra large build! +],,) AC_ARG_ENABLE(static-gtk, [ --enable-static-gtk: Modules that are linked against gtk libraries use the static libraries instead of the dynmaic ones. @@ -279,14 +280,12 @@ AC_MSG_RESULT([checked ($_os)]) dnl =================================================================== -dnl First setting is whether to include symbols into final build. +dnl Enable the crashdump feature (And also build with -g) dnl =================================================================== -if test "$enable_symbols" = "yes"; then - ENVCFLAGSCXX="-g" - ENVCFLAGS="-g" +if test "$enable_crashdump" = "yes"; then + ENABLE_CRASHDUMP="yes" else - ENVCFLAGSCXX="" - ENVCFLAGS="" + ENABLE_CRASHDUMP="" fi dnl =================================================================== @@ -1390,7 +1389,7 @@ AC_SUBST(PTHREAD_LIBS) AC_SUBST(ENABLE_DEBUG) AC_SUBST(ENABLE_STATIC_GTK) -AC_SUBST(ENVCFLAGSCXX) +AC_SUBST(ENABLE_CRASHDUMP) AC_SUBST(WITH_GPC) AC_OUTPUT([set_soenv]) Index: config_office/set_soenv.in =================================================================== RCS file: /cvs/tools/config_office/set_soenv.in,v retrieving revision 1.8.2.3 diff -u -r1.8.2.3 set_soenv.in --- config_office/set_soenv.in 27 Jun 2003 14:58:39 -0000 1.8.2.3 +++ config_office/set_soenv.in 27 Jun 2003 16:29:27 -0000 @@ -1650,7 +1650,7 @@ if ( $COM ne "MSC" ) { ToFile( "LINK", $CC, "e" ); } -ToFile( "ENVCFLAGSCXX", "@ENVCFLAGSCXX@", "e" ); +ToFile( "ENABLE_CRASHDUMP", "@ENABLE_CRASHDUMP@","e" ); ToFile( "WITH_GPC", "@WITH_GPC@", "e" ); ToFile( "GXX_INCLUDE_PATH", "@GXX_INCLUDE_PATH@","e" ); ToFile( "COMMON_BUILD_TOOLS",$COMMON_BUILD_TOOLS, "e" );