Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 472786
Collapse All | Expand All

(-)itksnap-2.4.0/CMake/find_fltk_13.cmake (-2 / +2 lines)
Lines 18-24 Link Here
18
SET(BASETARG "fltk${SUFF}")
18
SET(BASETARG "fltk${SUFF}")
19
19
20
# Search for the base library
20
# Search for the base library
21
FIND_LIBRARY(FLTK_BASE_LIBRARY NAMES ${BASETARG} PATHS "/usr/lib" "/usr/local/lib")
21
FIND_LIBRARY(FLTK_BASE_LIBRARY NAMES ${BASETARG} PATHS "/usr/lib" "/usr/local/lib" "/usr/lib/fltk-1")
22
22
23
IF(FLTK_BASE_LIBRARY)
23
IF(FLTK_BASE_LIBRARY)
24
  MESSAGE(STATUS "FLTK base: ${FLTK_BASE_LIBRARY}")
24
  MESSAGE(STATUS "FLTK base: ${FLTK_BASE_LIBRARY}")
Lines 44-50 Link Here
44
  # 2. In the root directory
44
  # 2. In the root directory
45
  FIND_PATH(FLTK_INCLUDE_DIR
45
  FIND_PATH(FLTK_INCLUDE_DIR
46
    NAMES "FL/Fl.H"
46
    NAMES "FL/Fl.H"
47
    PATHS "${FLTK_ROOT_DIR}/include" "${FLTK_ROOT_DIR}")
47
    PATHS "${FLTK_ROOT_DIR}/include" "/usr/include/fltk-1/" "${FLTK_ROOT_DIR}")
48
  MESSAGE(STATUS "FLTK include directory: ${FLTK_INCLUDE_DIR}")
48
  MESSAGE(STATUS "FLTK include directory: ${FLTK_INCLUDE_DIR}")
49
49
50
  # For now, we let the user decide about the additional image libraries
50
  # For now, we let the user decide about the additional image libraries
(-)itksnap-2.4.0/CMake/standalone.cmake (-1 / +1 lines)
Lines 7-13 Link Here
7
#############################################
7
#############################################
8
# REQUIRE VTK                               #
8
# REQUIRE VTK                               #
9
#############################################
9
#############################################
10
FIND_PACKAGE(VTK 5.6 REQUIRED)
10
FIND_PACKAGE(VTK REQUIRED)
11
INCLUDE (${VTK_USE_FILE})
11
INCLUDE (${VTK_USE_FILE})
12
12
13
#############################################
13
#############################################
(-)itksnap-2.4.0/Logic/Framework/IRISApplication.cxx (+1 lines)
Lines 57-62 Link Here
57
#include "itkIdentityTransform.h"
57
#include "itkIdentityTransform.h"
58
#include "itkResampleImageFilter.h"
58
#include "itkResampleImageFilter.h"
59
#include "itkNearestNeighborInterpolateImageFunction.h"
59
#include "itkNearestNeighborInterpolateImageFunction.h"
60
#include "itkConstantBoundaryCondition.h"
60
#include "itkBSplineInterpolateImageFunction.h"
61
#include "itkBSplineInterpolateImageFunction.h"
61
#include "itkLinearInterpolateImageFunction.h"
62
#include "itkLinearInterpolateImageFunction.h"
62
#include "itkWindowedSincInterpolateImageFunction.h"
63
#include "itkWindowedSincInterpolateImageFunction.h"
(-)itksnap-2.4.0/Logic/ImageWrapper/ScalarImageWrapper.txx (+1 lines)
Lines 20-25 Link Here
20
#include "itkImageSliceConstIteratorWithIndex.h"
20
#include "itkImageSliceConstIteratorWithIndex.h"
21
#include "itkNumericTraits.h"
21
#include "itkNumericTraits.h"
22
#include "itkRegionOfInterestImageFilter.h"
22
#include "itkRegionOfInterestImageFilter.h"
23
#include "itkConstantBoundaryCondition.h"
23
#include "itkRescaleIntensityImageFilter.h"
24
#include "itkRescaleIntensityImageFilter.h"
24
#include "itkIdentityTransform.h"
25
#include "itkIdentityTransform.h"
25
#include "itkResampleImageFilter.h"
26
#include "itkResampleImageFilter.h"
(-)itksnap-2.4.0/Logic/LevelSet/SNAPAdvectionFieldImageFilter.h (-2 / +2 lines)
Lines 50-57 Link Here
50
    TInputImage,
50
    TInputImage,
51
    itk::Image<
51
    itk::Image<
52
      itk::CovariantVector<TOutputValueType,
52
      itk::CovariantVector<TOutputValueType,
53
        ::itk::GetImageDimension<TInputImage>::ImageDimension>,
53
        TInputImage::ImageDimension>,
54
      ::itk::GetImageDimension<TInputImage>::ImageDimension> >
54
	TInputImage::ImageDimension> >
55
{
55
{
56
public:
56
public:
57
  
57
  

Return to bug 472786