r238: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 4 Dec 2000 03:09:00 +0000 (03:09 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 4 Dec 2000 03:09:00 +0000 (03:09 +0000)
ChangeLog
configure.in
include/array2dfile.h
libctsim/array2dfile.cpp

index 876515c403a2ed78be9b6f936e4341dd405040cf..84473be2eb38aa55e19f6d0b5b776447ae509ae1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2.0.7 - 12/04/00
+   Modifications for Microsoft Visual C++ compilation
+       
 2.0.6 - 12/03/00
    Fixed minor compilation problem with procsignal.h
    Updated README file
index 02c5aaba4dbf9fe30bf450c013c1d79dd1efeeba..22e3b52f11c29089c2d5af6cad45fc71529b878c 100644 (file)
@@ -4,7 +4,7 @@ dnl Must reset CDPATH so that bash's cd does not print to stdout
 dnl CDPATH=
 
 AC_INIT(src/ctsim.cpp)
-AM_INIT_AUTOMAKE(ctsim,2.0.6)
+AM_INIT_AUTOMAKE(ctsim,2.0.7)
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
index 1c40c05b95b6a1f60558520d0d677c049b1ddce4..0b3da841d43cf135380a14ee6533e40f14bc40f2 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: array2dfile.h,v 1.6 2000/12/04 03:04:06 kevin Exp $
+**  $Id: array2dfile.h,v 1.7 2000/12/04 03:09:00 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
@@ -188,7 +188,7 @@ public:
  protected:
   typedef vector<Array2dFileLabel*> labelContainer;
 
-  static const kuint16 m_signature = ('I'*256+'F');
+  static const kuint16 m_signature;
   kuint16 m_headersize;
   string  m_filename;
 
index 424ec230fe8d1717550ee6a9b1e402abe0bf1e3d..19234bfb48c42ac0a9e29e9697356f1cb02f3800 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: array2dfile.cpp,v 1.8 2000/07/29 19:50:08 kevin Exp $
+**  $Id: array2dfile.cpp,v 1.9 2000/12/04 03:09:00 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
@@ -31,6 +31,7 @@
 
 using namespace std;
 
+Array2dFile::m_signature = ('I'*256+'F');
 
 ///////////////////////////////////////////////////////////////////////////
 // CLASS IMPLEMENTATION