On 13/06/2016 08:36, Juha Martikainen wrote:

nmake /f Makefile.vc CFG=release /P

Resulting:
NMAKE : fatal error U1073: don't know how to make 'config.h.win32'
Stop.


Hi Juha,

In addition to what Cosimo said, it might be worthwhile to remember that it's not strictly necessary to have config.h for your eventual build. Wherever config.h gets #included in Harfbuzz, there's usually a guard, like this:-

      #ifdef HAVE_CONFIG_H
      #include "config.h"
      #endif

I build from git (using a VC project, rather than using nmake). My project doesn't define HAVE_CONFIG_H and yet it's never caused any problems AFAIK.

John
_______________________________________________
HarfBuzz mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/harfbuzz

Reply via email to