Index: config_office/configure.in =================================================================== RCS file: /cvs/tools/config_office/configure.in,v retrieving revision 1.54.2.1 diff -u -r1.54.2.1 configure.in --- config_office/configure.in 7 Jul 2003 10:36:49 -0000 1.54.2.1 +++ config_office/configure.in 8 Jul 2003 15:14:48 -0000 @@ -298,10 +298,18 @@ dnl =================================================================== dnl Set the ENABLE_CRASHDUMP variable. dnl =================================================================== -if test "$enable_crashdump" = "yes"; then - ENABLE_CRASHDUMP="yes" +if test "$enable_crashdump" = "yes" -o "$enable_crashdump" = "TRUE"; then + ENABLE_CRASHDUMP="TRUE" else - ENABLE_CRASHDUMP="" + if test "$enable_crashdump" = "STATIC"; then + ENABLE_CRASHDUMP="STATIC" + else + if test "$enable_crashdump" = ""; then + ENABLE_CRASHDUMP="" + else + AC_MSG_ERROR([ENABBLE_CRASHDUMP only accepts yes, TRUE or STATIC as parameters..]) + fi + fi fi dnl ===================================================================