r622: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 9 Mar 2001 03:54:25 +0000 (03:54 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 9 Mar 2001 03:54:25 +0000 (03:54 +0000)
configure
configure.in
src/threadrecon.cpp

index 972c00e95a6715a681a7856b237d792689f304b1..c4d45b0f6e81c8ac1e569586040d5f31100ed51b 100755 (executable)
--- a/configure
+++ b/configure
@@ -4738,7 +4738,7 @@ fi
 
 
 if test "$efence" = "true" -a "$useefence" = "true" ; then
 
 
 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
   cat >> confdefs.h <<\EOF
 #define HAVE_EFENCE 1
 EOF
index 3026c1dba73a2fdc87fc9a8b11b5fedf3f4503ee..7463752b23c556e94a51b3396b438423cfebbe31 100644 (file)
@@ -420,7 +420,7 @@ esac],
 [useefence=false; AC_MSG_RESULT(no)])
 
 if test "$efence" = "true" -a "$useefence" = "true" ; then
 [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
   AC_DEFINE(HAVE_EFENCE)
   AC_MSG_RESULT(Using efence)
 fi
index 519fcb0e0194bcd6e30376bdf5c8094362a6f1e0..e4bf3c5e558c249e7594113d027a6290a82f753d 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2001 Kevin Rosenberg
 **
 **  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
 **
 **  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)
    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_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)
 {
 }
 
 {
 }