From 249f195fc5ec53e539dd91397a1adafb2f8b5cfb Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 11 May 2000 14:07:55 +0000 Subject: [PATCH] r52: *** empty log message *** --- ChangeLog | 3 ++- NEWS | 2 +- TODO | 2 +- configure.in | 2 +- src/phm2rs.c | 7 +++++-- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8227167..778e787 100644 --- 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 + Cleaned up compilation warnings 0.5.2-b5 - 5/7/2000 Continued conversion to ANSI C diff --git a/NEWS b/NEWS index c08b246..1da3fcb 100644 --- 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 diff --git a/TODO b/TODO index d0df363..dc92206 100644 --- 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. -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. diff --git a/configure.in b/configure.in index 3586b11..61ddc8c 100644 --- a/configure.in +++ b/configure.in @@ -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) -AM_INIT_AUTOMAKE(ctsim,0.5.2) +AM_INIT_AUTOMAKE(ctsim,0.5.3) AM_CONFIG_HEADER(config.h) dnl Checks for programs. diff --git a/src/phm2rs.c b/src/phm2rs.c index 4dbf090..cf47837 100644 --- a/src/phm2rs.c +++ b/src/phm2rs.c @@ -2,8 +2,11 @@ ** 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 $ +** 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 ** @@ -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); - if (mpi_ct.my_rank > 0 && opt_phmnum > 0) + if (mpi_ct.my_rank > 0 && opt_phmnum >= 0) phm = phm_create (opt_phmnum); #endif -- 2.34.1