Re: [ft-devel] freetype 2.3.8 warnings

2009-01-26 Thread Sean McBride
On 1/24/09 4:38 PM, mpsuz...@hiroshima-u.ac.jp said: base/fttrigon.c: In function 'FT_Vector_Rotate': base/fttrigon.c:439: warning: right shift count = width of type base/fttrigon.c:440: warning: right shift count = width of type Hmm. For me, this warning appears to be completely useless.

Re: [ft-devel] freetype 2.3.8 warnings

2009-01-23 Thread Sean McBride
On 1/23/09 7:16 AM, Werner LEMBERG said: WARNING: While resolving call to function 'FTC_GNode_Compare' arguments were dropped! No idea what this is... Likewise. No matter. base/fttrigon.c: In function 'FT_Vector_Rotate': base/fttrigon.c:439: warning: right shift count = width of type

Re: [ft-devel] freetype 2.3.8 warnings

2009-01-23 Thread mpsuzuki
Just I've updated my PowerBook G4 to Mac OS X 10.5.6 and Xcode 3.1.2. On Fri, 23 Jan 2009 10:34:19 -0500 Sean McBride s...@rogue-research.com wrote: On 1/23/09 7:16 AM, Werner LEMBERG said: WARNING: While resolving call to function 'FTC_GNode_Compare' arguments were dropped! No idea what

[ft-devel] freetype 2.3.8 warnings

2009-01-22 Thread Sean McBride
Hi ft devs, I'm just playing with 2.3.8 now, and got warnings: This one I could not repro: libtool: compile: /Developer/usr/bin/llvm-gcc-4.2 -I/Users/sean/kitware/ 3rd_Party/freetype_releases/2.3.8/freetype-2.3.8/objs -I./builds/unix -I/

Re: [ft-devel] freetype 2.3.8 warnings

2009-01-22 Thread Werner LEMBERG
WARNING: While resolving call to function 'FTC_GNode_Compare' arguments were dropped! No idea what this is... base/fttrigon.c: In function 'FT_Vector_Rotate': base/fttrigon.c:439: warning: right shift count = width of type base/fttrigon.c:440: warning: right shift count = width of type

Re: [ft-devel] freetype 2.3.8 warnings

2009-01-22 Thread Werner LEMBERG
base/fttrigon.c:439: warning: right shift count = width of type I guess it can be related with LP64 issue. In my LP64 patch, there was a modification of fttrigon.c aslike: [...] - FT_Int32 half = 1L ( shift - 1 ); + FT_Int32 half = (FT_Int32)1L ( shift - 1 ); vec-x = ( v.x + half