Skip to content

Fix typo in the freetype name mangling header.

The typo causes conflicts when linking static VTK builds with other libraries also using freetype. The following:

#define vtkfreetype_FT_MulFix vtkfreetype_vtkfreetype_FT_MulFix

needs to change to:

#define FT_MulFix vtkfreetype_FT_MulFix

Merge request reports