[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [ft-devel] last fixes for forthcoming release
From: |
mpsuzuki |
Subject: |
Re: [ft-devel] last fixes for forthcoming release |
Date: |
Mon, 27 Feb 2006 13:28:57 +0900 |
Hi
I found following tasks I have to finish before freetype-2.2.
1. Makefile in ft2demos should refer freetype2/modules.cfg,
but does not at present. Therefore, libfreetype.la is
built without gxvalid/otlavid module by default, but
make -C ft2demos tries to build ftvalid and failed.
2. Makefiles for MPW should be updated. I've not updated
MPW header files for the modification for internal headers.
Regards,
mpsuzuki
On Mon, 27 Feb 2006 12:39:37 +0900
address@hidden wrote:
> On Mon, 27 Feb 2006 12:23:36 +0900
> address@hidden wrote:
>
> > In file included from
> > /Users/mps/redhat/BUILD/ft22test/freetype2/src/cache/ftcache.c:24:
> > /Users/mps/redhat/BUILD/ft22test/freetype2/src/cache/ftccache.c:262: error:
> > static declaration of 'ftc_node_destroy' follows non-static declaration
> > /Users/mps/redhat/BUILD/ft22test/freetype2/include/freetype/cache/ftccache.h:89:
> > error: previous declaration of 'ftc_node_destroy' was here
>
> The error caused by following conflict:
>
> ftccache.h declares, around line #89
>
> FT_BASE( void ) ftc_node_destroy( ... )
>
> ftccache.c declares, around line #262
>
> FT_LOCAL_DEF( void ) ftc_node_destroy( ... )
>
> Which type is correct?
>
> Regards,
> mpsuzuki