freetype-devel
[Top][All Lists]
Advanced

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

Re: [Devel] include problems with Visual C++ 6.0


From: Werner LEMBERG
Subject: Re: [Devel] include problems with Visual C++ 6.0
Date: Tue, 10 Apr 2001 00:20:26 +0200 (CEST)

> I'm trying to compile freetype 2.0.2 as a dll under Windows.  I have
> put all src files in a single directory and created a simple
> dll-workspace.  When I compile, I get the following errors:
>
> [...]
>
> e:\tosca\cadenza\tfrey_repeng_dev\freetype\flat_src\ahmodule.c(23) :
> error C2006: #include expected a filename, found 'identifier'

This means that VC++ 6.0 isn't an ANSI C++ compiler (at least not the
preprocessor).  Write a bug report to Microsoft.

> Is there a special parameter to be set under Windows?

Good question.

If you can't use an ANSI conforming compiler, you have to replace

  #define FOO <bar.h>
  #include FOO

with

  #include <bar.h>

manually.


    Werner



reply via email to

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