[Paraview] Oggtheora message while configuring ParaView

Utkarsh Ayachit utkarsh.ayachit at kitware.com
Tue Aug 13 17:38:44 EDT 2013


Looks like CHECK_TYPE_SIZE(..) calls made by cmake to discover various
type sizes just fails (not just for OggTheora but also for HDF5 and
IceT).  To confirm that, try running cmake on the attached
CMakeLists.txt as

> cd <TMP_BUILD_DIR>
> ccmake  ..../<DIR containing the attached CMakeLists.txt>

What does it print out (ensure correct compiler is being used)? For me
it prints the following message:

HAVE_VTKOGGTHEORA_INT16_T=TRUE
     VTKOGGTHEORA_INT16_T=2

HAVE_VTKOGGTHEORA_INT=TRUE
     VTKOGGTHEORA_INT=4
-------------- next part --------------
cmake_minimum_required(VERSION 2.8)
project(TestTypeSize)

include(CheckTypeSize)
CHECK_TYPE_SIZE(int16_t     VTKOGGTHEORA_INT16_T)
CHECK_TYPE_SIZE(int         VTKOGGTHEORA_INT)

message(
  "Test results: \n"
  "HAVE_VTKOGGTHEORA_INT16_T=${HAVE_VTKOGGTHEORA_INT16_T}\n"
  "     VTKOGGTHEORA_INT16_T=${VTKOGGTHEORA_INT16_T}\n"
  "\n"
  "HAVE_VTKOGGTHEORA_INT=${HAVE_VTKOGGTHEORA_INT}\n"
  "     VTKOGGTHEORA_INT=${VTKOGGTHEORA_INT}")


More information about the ParaView mailing list