From 130313545159177ab450ddd249a49096cfdb1376 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 9 Mar 2001 03:54:25 +0000 Subject: [PATCH] r622: *** empty log message *** --- configure | 2 +- configure.in | 2 +- src/threadrecon.cpp | 7 +++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 972c00e..c4d45b0 100755 --- a/configure +++ b/configure @@ -4738,7 +4738,7 @@ fi if test "$efence" = "true" -a "$useefence" = "true" ; then - ctlibs_tools="$ctlibs_tools -ldefence" + ctlibs_tools="$ctlibs_tools -lefence" cat >> confdefs.h <<\EOF #define HAVE_EFENCE 1 EOF diff --git a/configure.in b/configure.in index 3026c1d..7463752 100644 --- a/configure.in +++ b/configure.in @@ -420,7 +420,7 @@ esac], [useefence=false; AC_MSG_RESULT(no)]) if test "$efence" = "true" -a "$useefence" = "true" ; then - ctlibs_tools="$ctlibs_tools -ldefence" + ctlibs_tools="$ctlibs_tools -lefence" AC_DEFINE(HAVE_EFENCE) AC_MSG_RESULT(Using efence) fi diff --git a/src/threadrecon.cpp b/src/threadrecon.cpp index 519fcb0..e4bf3c5 100644 --- a/src/threadrecon.cpp +++ b/src/threadrecon.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: threadrecon.cpp,v 1.22 2001/03/07 21:18:50 kevin Exp $ +** $Id: threadrecon.cpp,v 1.23 2001/03/09 03:54:25 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 @@ -55,10 +55,9 @@ ReconstructorSupervisorThread::ReconstructorSupervisorThread (ProjectionFileView const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, int iZeropad, const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam, const char* pszBackprojectName, const char* const pszLabel) -: m_pProjView(pProjView), m_iNX(iNX), m_iNY(iNY), m_strFilterName(pszFilterName), m_dFilterParam(dFilterParam), +: SupervisorThread(), m_pProjView(pProjView), m_iNX(iNX), m_iNY(iNY), m_strFilterName(pszFilterName), m_dFilterParam(dFilterParam), m_strFilterMethod(pszFilterMethod), m_iZeropad(iZeropad), m_strFilterGenerationName(pszFilterGenerationName), - m_strInterpName(pszInterpName), m_iInterpParam(iInterpParam), m_strBackprojectName(pszBackprojectName), m_strLabel(pszLabel), - SupervisorThread() + m_strInterpName(pszInterpName), m_iInterpParam(iInterpParam), m_strBackprojectName(pszBackprojectName), m_strLabel(pszLabel) { } -- 2.34.1