diff -rupN --no-dereference freetype-2.11.1/include/freetype/ftoutln.h freetype-2.11.1-new/include/freetype/ftoutln.h --- freetype-2.11.1/include/freetype/ftoutln.h 2021-02-13 09:16:54.000000000 +0100 +++ freetype-2.11.1-new/include/freetype/ftoutln.h 2021-12-15 20:32:32.202013506 +0100 @@ -164,6 +164,15 @@ FT_BEGIN_HEADER FT_Int numContours, FT_Outline *anoutline ); + /* + * Kept downstream for ABI compatibility only. + * It just throws error now. Remove once soname has been bumped. + */ + FT_EXPORT( FT_Error ) + FT_Outline_New_Internal( FT_Memory memory, + FT_UInt numPoints, + FT_Int numContours, + FT_Outline *anoutline ); /************************************************************************** * @@ -191,6 +200,13 @@ FT_BEGIN_HEADER FT_Outline_Done( FT_Library library, FT_Outline* outline ); + /* + * Kept downstream for ABI compatibility only. + * It just throws error now. Remove once soname has been bumped. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Done_Internal( FT_Memory memory, + FT_Outline* outline ); /************************************************************************** * diff -rupN --no-dereference freetype-2.11.1/src/base/ftoutln.c freetype-2.11.1-new/src/base/ftoutln.c --- freetype-2.11.1/src/base/ftoutln.c 2021-02-13 09:16:54.000000000 +0100 +++ freetype-2.11.1-new/src/base/ftoutln.c 2021-12-15 20:32:32.203013479 +0100 @@ -289,6 +289,19 @@ /* documentation is in ftoutln.h */ + /* + * Kept downstream for ABI compatibility only. + * It just throws error now. Remove once soname has been bumped. + */ + FT_EXPORT_DEF( FT_Error ) + FT_Outline_New_Internal( FT_Memory memory, + FT_UInt numPoints, + FT_Int numContours, + FT_Outline *anoutline ) + { + return FT_THROW( Unimplemented_Feature ); + } + FT_EXPORT_DEF( FT_Error ) FT_Outline_New( FT_Library library, FT_UInt numPoints, @@ -421,6 +434,17 @@ /* documentation is in ftoutln.h */ + /* + * Kept downstream for ABI compatibility only. + * It just throws error now. Remove once soname has been bumped. + */ + FT_EXPORT_DEF( FT_Error ) + FT_Outline_Done_Internal( FT_Memory memory, + FT_Outline* outline ) + { + return FT_THROW( Unimplemented_Feature ); + } + FT_EXPORT_DEF( FT_Error ) FT_Outline_Done( FT_Library library, FT_Outline* outline )