ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm configure.in,1.143,1.144


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm configure.in,1.143,1.144
Date: Fri, 17 Jan 2003 14:27:53 -0500

Update of /cvsroot/ayttm/ayttm
In directory subversions:/tmp/cvs-serv12726

Modified Files:
        configure.in 
Log Message:
better --disable-crash-dialog  


Index: configure.in
===================================================================
RCS file: /cvsroot/ayttm/ayttm/configure.in,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- configure.in        17 Jan 2003 19:17:35 -0000      1.143
+++ configure.in        17 Jan 2003 19:27:50 -0000      1.144
@@ -100,16 +100,16 @@
 
 dnl want crash dialog
 AC_ARG_ENABLE(crash-dialog,
-       [  --enable-crash-dialog   Enable crash dialog [default=yes]],
-       [ac_cv_enable_crash_dialog=$enableval], [ac_cv_enable_crash_dialog=yes])
-if test $ac_cv_enable_crash_dialog = yes; then
+       [  --disable-crash-dialog   Disable crash dialog],
+       [enable_crash_dialog=$enableval], [enable_crash_dialog=yes])
+if test "$enable_crash_dialog" != "no"; then
 dnl check if GDB is somewhere
-       AC_CHECK_PROG(ac_cv_enable_crash_dialog, gdb, yes, no)
+       AC_CHECK_PROG(enable_crash_dialog, gdb, yes, no)
        AC_MSG_CHECKING([whether to use crash dialog])
-       if test $ac_cv_enable_crash_dialog = yes; then
+       if test "$enable_crash_dialog" != "no"; then
                AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
        fi
-       AC_MSG_RESULT($ac_cv_enable_crash_dialog)
+       AC_MSG_RESULT($enable_crash_dialog)
 fi
 
 AC_MSG_CHECKING(whether we want ESD support)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]