[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Devel] updating python bindings for latest CVS version of ft2.
From: |
ha shao |
Subject: |
Re: [Devel] updating python bindings for latest CVS version of ft2. |
Date: |
Wed, 28 Feb 2001 10:12:30 +0800 |
User-agent: |
Mutt/1.2.5i |
On Wed, Feb 28, 2001 at 12:48:22AM +1100, address@hidden wrote:
> In trying to do this, I find that I've obviously fallen quite a way behind.
> Originally, I was including the following:
>
> #include <freetype/freetype.h>
> #include <freetype/ftglyph.h>
> #include <freetype/ftoutln.h>
> #include <freetype/internal/ftobjs.h> /* XXX needed for FT_New_GlyphSlot */
> #include <freetype/internal/ftdebug.h> /* XXX needed for FT_Trace */
>
> It seems that all this has changed, but I'm not sure what it's changed to,
> as there doesn't seem to be an install target in the CVSed Makefile.
>
> >From what I've seen in the ft2 source, however, I get the feeling that
> most of these headers are no longer exported...
>
On my system (Debian unstable), they are located under
/usr/include/freetype2/
Everything are there. I need to change this line to make 'configure' work
cause there are no 'include' under freetype2/ on my system:
--- configure.in Wed Feb 28 10:10:03 2001
+++ ../PyFT2.new/configure.in Tue Feb 27 18:11:44 2001
@@ -16,7 +16,7 @@
freetype,[ --with-freetype=path],
FREETYPE2_PATH=$with_freetype
LIBS=-L${FREETYPE2_PATH}/lib
- FREETYPE2_OPT="${FREETPYE2_OPT} -I${FREETYPE2_PATH}/include"
+ FREETYPE2_OPT="${FREETPYE2_OPT} -I${FREETYPE2_PATH}/include
-I${FREETYPE2_PATH}"
FREETYPE2_LIB="-L${FREETYPE2_PATH}/lib ${FREETYPE2_LIB}",
FREETYPE2_PATH=)
--
Best regard
hashao