freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ft-devel] Invalid Preprocessor directive: #include FT_FREETYPE_H


From: Alan Coopersmith
Subject: Re: [ft-devel] Invalid Preprocessor directive: #include FT_FREETYPE_H
Date: Tue, 05 Oct 2010 20:45:20 -0700
User-agent: Thunderbird 2.0.0.23 (X11/20090926)

RustyBucket wrote:
> 
> CFLAGS += $freetype_cflags 
> LDFLAGS += $freetype_libs
> arm-none-eabi-gcc: reetype_cflags: No such file or directory

Welcome to the make command.   You MUST bracket all variable names
longer than a character - "$freetype_cflags" is the variable $f
followed by the string "reetype_cflags" - since you don't have a $f
defined, that becomes the empty string, followed by the string "reetype_cflags".

You need to change the makefile to:
 CFLAGS += ${freetype_cflags}
 LDFLAGS += ${freetype_libs}


-- 
        -Alan Coopersmith-        address@hidden
         Oracle Solaris Platform Engineering: X Window System




reply via email to

[Prev in Thread] Current Thread [Next in Thread]