ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm ChangeLog,1.100,1.101 configure.in,1.98,1.99


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm ChangeLog,1.100,1.101 configure.in,1.98,1.99
Date: Tue, 14 Jan 2003 05:51:58 -0500

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

Modified Files:
        ChangeLog configure.in 
Log Message:
 Add crash handler (./configure --enable-crash-handler)


Index: ChangeLog
===================================================================
RCS file: /cvsroot/ayttm/ayttm/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog   13 Jan 2003 16:16:14 -0000      1.100
+++ ChangeLog   14 Jan 2003 10:51:55 -0000      1.101
@@ -1,3 +1,11 @@
+2003-01-13 [colin]     0.2-77
+
+       * src/crash.[ch] ** NEW **
+         configure.in
+         src/main.c
+         src/Makefile.am
+               Add crash handler (./configure --enable-crash-handler)
+
 2003-01-13 [colin]     0.2-76
 
        * src/chat_room.c

Index: configure.in
===================================================================
RCS file: /cvsroot/ayttm/ayttm/configure.in,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- configure.in        13 Jan 2003 16:16:14 -0000      1.98
+++ configure.in        14 Jan 2003 10:51:55 -0000      1.99
@@ -1,6 +1,6 @@
 # Process this file with autoconf to produce a configure script.
 AC_INIT([src/main.c])
-AM_INIT_AUTOMAKE(yattm, 0.2-76)
+AM_INIT_AUTOMAKE(yattm, 0.2-77)
 AM_CONFIG_HEADER(config.h)
 
 dnl AC_DEFINE(UNIX)
@@ -29,7 +29,7 @@
 if test "x$host_alias" != "xmingw32"; then
 AC_CHECK_HEADERS([alloca.h argz.h arpa/inet.h errno.h fcntl.h langinfo.h 
libintl.h limits.h locale.h malloc.h netdb.h netinet/in.h paths.h sgtty.h 
stddef.h stdlib.h string.h strings.h sys/file.h sys/ioctl.h sys/param.h 
sys/socket.h sys/time.h syslog.h termios.h unistd.h utmp.h getopt.h iconv.h])
 else
-AC_CHECK_HEADERS([errno.h fcntl.h langinfo.h libintl.h limits.h locale.h 
stdlib.h string.h strings.h unistd.h iconv.h])
+AC_CHECK_HEADERS([errno.h fcntl.h langinfo.h libintl.h limits.h locale.h 
stdlib.h string.h strings.h unistd.h iconv.h sys/utsname.h])
 fi
 
 # Checks for typedefs, structures, and compiler characteristics.
@@ -97,6 +97,19 @@
 AC_ARG_ENABLE(esd, 
 [  --disable-esd           compile without ESD soundserver])
 
+dnl want crash dialog
+AC_ARG_ENABLE(crash-dialog,
+       [  --enable-crash-dialog   Enable crash dialog [default=no]],
+       [ac_cv_enable_crash_dialog=$enableval], [ac_cv_enable_crash_dialog=no])
+if test $ac_cv_enable_crash_dialog = yes; then
+dnl check if GDB is somewhere
+       AC_CHECK_PROG(ac_cv_enable_crash_dialog, gdb, yes, no)
+       AC_MSG_CHECKING([whether to use crash dialog])
+       if test $ac_cv_enable_crash_dialog = yes; then
+               AC_DEFINE(CRASH_DIALOG, 1, Pop up crash dialog)
+       fi
+       AC_MSG_RESULT($ac_cv_enable_crash_dialog)
+fi
 
 AC_MSG_CHECKING(whether we want ESD support)
 AC_MSG_RESULT($enable_esd)





reply via email to

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