On Tue, Jul 14, 2009 at 1:48 PM, Tim Campbell<[email protected]> wrote: > I am building VTK from source. The header file in question does not exist > in the v5.4.2 source.
I just took a closer look, and I don't think we even #include vtkCommonInstantiator.h anywhere. Not sure if we once did or if I was copying a configure test from some other library. In any event, yes, the configure script needs to be changed to look for one of the VTK headers we do use, any or all of: #include "vtkXMLUnstructuredGridReader.h" #include "vtkXMLUnstructuredGridWriter.h" #include "vtkXMLPUnstructuredGridWriter.h" #include "vtkUnstructuredGrid.h" #include "vtkGenericGeometryFilter.h" #include "vtkCellArray.h" #include "vtkConfigure.h" #include "vtkFloatArray.h" #include "vtkDoubleArray.h" #include "vtkPointData.h" #include "vtkPoints.h" I can probably fix this and check it in some time today. In the meantime, the fix is pretty easy. Just go in aclocal.m4 line 1406 and change it to check for some other header file. Then rerun autoconf and autoheader and configure. -- John ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users
