Index: configure.in =================================================================== RCS file: /cvs/tools/config_office/configure.in,v retrieving revision 1.54.2.5 diff -p -r1.54.2.5 configure.in *** configure.in 15 Jul 2003 03:12:44 -0000 1.54.2.5 --- configure.in 17 Jul 2003 11:01:24 -0000 *************** AC_ARG_ENABLE(symbols, *** 41,46 **** --- 41,49 ---- a complete build needs 8 Gb of space and takes much longer. (enables -g compiler flag) + --enable-symbols=small sets the gcc -g1 setting + which is smaller. + ],,) AC_ARG_ENABLE(debug, [ --enable-debug: Include debugging symbols from --enable-symbols *************** if test "$enable_symbols" = "yes"; then *** 301,308 **** ENVCFLAGSCXX="-g" ENVCFLAGS="-g" else ! ENVCFLAGSCXX="" ! ENVCFLAGS="" fi dnl =================================================================== --- 304,316 ---- ENVCFLAGSCXX="-g" ENVCFLAGS="-g" else ! if test "$enable_symbols" = "small"; then ! ENVCFLAGSCXX="-g1" ! ENVCFLAGS="-g1" ! else ! ENVCFLAGSCXX="" ! ENVCFLAGS="" ! fi fi dnl =================================================================== *************** fi *** 1061,1070 **** dnl =================================================================== dnl Check whether the gtk 2.0 libraries are available. dnl =================================================================== ! if test "$test_gtk" = "yes"; then pkg_modules="gtk+-2.0 >= 1.3.13" PKG_CHECK_MODULES( GTK, [$pkg_modules] ) ! dnl AM_PATH_GTK("1.3.13", AC_MSG_RESULT([GTK OK]), AC_MSG_WARN([GTK 2.0 not found]) fi dnl =================================================================== --- 1069,1080 ---- dnl =================================================================== dnl Check whether the gtk 2.0 libraries are available. dnl =================================================================== ! if test -n "$ENABLE_CRASHDUMP" ; then ! ! if test "$test_gtk" = "yes"; then pkg_modules="gtk+-2.0 >= 1.3.13" PKG_CHECK_MODULES( GTK, [$pkg_modules] ) ! fi fi dnl ===================================================================