r3740: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 11 Jan 2003 21:23:38 +0000 (21:23 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 11 Jan 2003 21:23:38 +0000 (21:23 +0000)
configure
configure.ac
tools/ctsimtext.cpp

index 9a4b52965fa6bb1065cc63ea5d2c7b338daced98..59bf70ce3048a61d7ab00043519cddd8a86360dd 100755 (executable)
--- a/configure
+++ b/configure
@@ -1491,7 +1491,7 @@ fi
 
 PACKAGE=ctsim
 
 
 PACKAGE=ctsim
 
-VERSION=3.5.6
+VERSION=3.7.0
 
 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
   { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
   { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
index 8cbebb2d79d7c77b8c9496fb323ba4c64940362f..637d29765ddabc8d211ee24a2771267744dbb85f 100644 (file)
@@ -5,7 +5,7 @@ dnl CDPATH=
 
 AC_INIT
 AC_CONFIG_SRCDIR([src/ctsim.cpp])
 
 AC_INIT
 AC_CONFIG_SRCDIR([src/ctsim.cpp])
-AM_INIT_AUTOMAKE(ctsim,3.5.6)
+AM_INIT_AUTOMAKE(ctsim,3.7.0)
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
index 0b2b6a477f7c368b40cb7ec5c9e1e489d4215cec..ad7a30685fa05602dbc3e2faeeb628da8d3b3ec0 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsimtext.cpp,v 1.23 2002/10/24 20:09:55 kevin Exp $
+**  $Id: ctsimtext.cpp,v 1.24 2003/01/11 21:23:38 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -38,14 +38,14 @@ extern "C" {
 #include <readline/history.h>
 };
 #endif
 #include <readline/history.h>
 };
 #endif
-
+#include <exception>
 
 // Master shell for all command-line tools
 // If called as ctsimtext, program will look to next token on command-line as the function name
 // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that
 // linked name as name of function.
 
 
 // Master shell for all command-line tools
 // If called as ctsimtext, program will look to next token on command-line as the function name
 // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that
 // linked name as name of function.
 
-static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.23 2002/10/24 20:09:55 kevin Exp $";
+static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.24 2003/01/11 21:23:38 kevin Exp $";
 static const char* const s_szProgramName = "ctsimtext";
 static const char* const s_szProgramName2 = "ctsimtext.exe";
 static const char* const s_szProgramName3 = "ctsimtext-lam";
 static const char* const s_szProgramName = "ctsimtext";
 static const char* const s_szProgramName2 = "ctsimtext.exe";
 static const char* const s_szProgramName3 = "ctsimtext-lam";
@@ -243,7 +243,7 @@ processCommand (int argc, char* const argv[])
     return 1;
   
   const char* const pszFunction = fileBasename (argv[0]);
     return 1;
   
   const char* const pszFunction = fileBasename (argv[0]);
-  
+
   try {  
     if (strcasecmp (pszFunction, "if1") == 0)
       return if1_main (argc, argv);
   try {  
     if (strcasecmp (pszFunction, "if1") == 0)
       return if1_main (argc, argv);
@@ -275,7 +275,7 @@ processCommand (int argc, char* const argv[])
         ctsimtext_usage (s_szProgramName);
       return 1;
     }
         ctsimtext_usage (s_szProgramName);
       return 1;
     }
-  } catch (exception e) {
+  } catch (std::exception e) {
     std::cerr << "Exception: " << e.what() << std::endl;
   } catch (...) {
     std::cerr << "Unknown exception caught\n";
     std::cerr << "Exception: " << e.what() << std::endl;
   } catch (...) {
     std::cerr << "Unknown exception caught\n";