From 9e830c5d3fbcb6038efb1ecb9dc8de8068f97582 Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Fri, 28 Jul 2000 01:12:34 +0000 Subject: [PATCH] Put FT_New_Face() in an #ifndef macintosh switch; ftmac.c provides an extended implementation. --- src/base/ftobjs.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c index 7b1d40363..903856b5c 100644 --- a/src/base/ftobjs.c +++ b/src/base/ftobjs.c @@ -1232,6 +1232,10 @@ } + /* There's a Mac-specific extended implementation of FT_New_Face() + in src/mac/ftmac.c */ +#ifndef macintosh + /*************************************************************************/ /* */ /* */ @@ -1288,6 +1292,8 @@ return FT_Open_Face( library, &args, face_index, aface ); } +#endif /* !macintosh */ + /*************************************************************************/ /* */