/usr/include/vtk-6.2/vtkftglConfig.h is in libvtk6-dev 6.2.0+dfsg1-10build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | #ifndef _ftglConfig_h
#define _ftglConfig_h
/*
Do not use the STL (portability issue)
*/
#define VTKFTGL_DO_NOT_USE_STL
#if defined(VTKFTGL_DO_NOT_USE_STL) && !defined(FTGL_DO_NOT_USE_STL)
#define FTGL_DO_NOT_USE_STL
#endif
/*
Support Mangle Mesa
*/
/* #undef FTGL_SUPPORT_MANGLE_MESA */
/*
Do not use texture fonts (crash on Type1 fonts)
*/
#define VTKFTGL_DO_NOT_USE_TEXTURE_FONT
#if defined(VTKFTGL_DO_NOT_USE_TEXTURE_FONT) && !defined(FTGL_DO_NOT_USE_TEXTURE_FONT)
#define FTGL_DO_NOT_USE_TEXTURE_FONT
#endif
/*
Do not use vector fonts
*/
#define VTKFTGL_DO_NOT_USE_VECTORISER
#if defined(VTKFTGL_DO_NOT_USE_VECTORISER) && !defined(FTGL_DO_NOT_USE_VECTORISER)
#define FTGL_DO_NOT_USE_VECTORISER
#endif
/*
Static or shared lib flags
*/
#define VTKFTGL_DLL
#if defined(VTKFTGL_DLL) && !defined(FTGL_LIBRARY)
#define FTGL_LIBRARY
#endif
/* #undef VTKFTGL_STATIC */
#if defined(VTKFTGL_STATIC) && !defined(FTGL_LIBRARY_STATIC)
#define FTGL_LIBRARY_STATIC
#endif
/*
Win32 flags
*/
/* #undef VTKFTGL_WIN32_FLAGS */
#if defined(VTKFTGL_WIN32_FLAGS)
#if !defined(USE_STD_NAMESPACE)
#define USE_STD_NAMESPACE
#endif
#if !defined(WIN32)
#define WIN32
#endif
#endif
/*
HPUX workaround
*/
/* #undef VTKFTGL_HPUX_SOURCE */
#if defined(VTKFTGL_HPUX_SOURCE) && !defined(_HPUX_SOURCE)
#define _HPUX_SOURCE
#endif
#endif
|