r52: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 11 May 2000 14:07:55 +0000 (14:07 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 11 May 2000 14:07:55 +0000 (14:07 +0000)
ChangeLog
NEWS
TODO
configure.in
src/phm2rs.c

index 822716741e7864e9c5e2a20450ed9f52f4da305c..778e787b4c1ddc5b0688eac227a95f572a964487 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
-0.5.2-b6 - 5/6/2000
+0.5.3 - 5/11/2000
    Added Microsoft VC compatibility
    Added Microsoft VC compatibility
+   Cleaned up compilation warnings
        
 0.5.2-b5 - 5/7/2000
    Continued conversion to ANSI C      
        
 0.5.2-b5 - 5/7/2000
    Continued conversion to ANSI C      
diff --git a/NEWS b/NEWS
index c08b246f3f44edfa22d4d0d15e304db9f79768b9..1da3fcb3766d2e39548cfd1d769bc307e1c48105 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-0.5.2 - May 11, 2000
+0.5.3 - May 11, 2000
 Numerous bug fixes
 Added Microsoft Windows compatibility
 
 Numerous bug fixes
 Added Microsoft Windows compatibility
 
diff --git a/TODO b/TODO
index d0df363a174b454ccecc126063f9105f2ab8e100..dc922061d90f7de8c8c9ad83aefb5315f0306d06 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,7 +1,7 @@
 Integrate low-level X11 graphics, replace all low-level driver code in
 libgraph. All the high-level graphics routines are in place.
 
 Integrate low-level X11 graphics, replace all low-level driver code in
 libgraph. All the high-level graphics routines are in place.
 
-Strip out unused functions from libk and libkmath.
+Make data file formats cross-platform compatible
 
 Integrate audio drivers into libcio -- used for the interactive CT display.
 
 
 Integrate audio drivers into libcio -- used for the interactive CT display.
 
index 3586b1179d9866237827b313371c4678392bb1be..61ddc8cbba18c562cef57300c7da513714b4b403 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/ctrec.c)
 dnl CDPATH=
 
 AC_INIT(src/ctrec.c)
-AM_INIT_AUTOMAKE(ctsim,0.5.2)
+AM_INIT_AUTOMAKE(ctsim,0.5.3)
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
index 4dbf09080b4dac963cbce5a9f8f038fdf396bbdb..cf47837ef61df46947ba3c1189ce098f3ebd3ab6 100644 (file)
@@ -2,8 +2,11 @@
 **  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: phm2rs.c,v 1.9 2000/05/08 20:02:32 kevin Exp $
+**  $Id: phm2rs.c,v 1.10 2000/05/11 14:07:55 kevin Exp $
 **  $Log: phm2rs.c,v $
 **  $Log: phm2rs.c,v $
+**  Revision 1.10  2000/05/11 14:07:55  kevin
+**  *** empty log message ***
+**
 **  Revision 1.9  2000/05/08 20:02:32  kevin
 **  ANSI C changes
 **
 **  Revision 1.9  2000/05/08 20:02:32  kevin
 **  ANSI C changes
 **
@@ -285,7 +288,7 @@ main (const int argc, char *const argv[])
   MPI_Bcast(&opt_debug, 1, MPI_INT, 0, mpi_ct.comm);
   MPI_Bcast(&opt_trace, 1, MPI_INT, 0, mpi_ct.comm);
 
   MPI_Bcast(&opt_debug, 1, MPI_INT, 0, mpi_ct.comm);
   MPI_Bcast(&opt_trace, 1, MPI_INT, 0, mpi_ct.comm);
 
-  if (mpi_ct.my_rank > 0 && opt_phmnum > 0)
+  if (mpi_ct.my_rank > 0 && opt_phmnum >= 0)
     phm = phm_create (opt_phmnum);
 #endif
 
     phm = phm_create (opt_phmnum);
 #endif