Re: Need help compiling freetype with debug output enabled

2023-05-22 Thread Craig White
Thanks, I got it working On Sun, May 21, 2023 at 12:49 AM Werner LEMBERG wrote: > > > (3) Go to directory `subprojects/freetype2/include/freetype/config` > > and modify file `ftoption.h`; you need to comment out options > > `FT_DEBUG_LEVEL_ERROR` and `FT_DEBUG_LEVEL_TRACE`. > > Oops! I

Re: Need help compiling freetype with debug output enabled

2023-05-20 Thread Vincent Torri
On Sun, May 21, 2023 at 6:21 AM Werner LEMBERG wrote: > > > > I am trying to look at the trace output using the FT_Trace_Set_Level > > function. I read that FT_DEBUG_LOGGING macro must be set for this > > to work, so I tried doing this by passing: > > -Dc_args='-D FT_DEBUG_LOGGING' > > to meson s

Re: Need help compiling freetype with debug output enabled

2023-05-20 Thread Werner LEMBERG
> (3) Go to directory `subprojects/freetype2/include/freetype/config` > and modify file `ftoption.h`; you need to comment out options > `FT_DEBUG_LEVEL_ERROR` and `FT_DEBUG_LEVEL_TRACE`. Oops! I mean the opposite, namely to activate those two options, which are commented out by default.

Re: Need help compiling freetype with debug output enabled

2023-05-20 Thread Werner LEMBERG
> I am trying to look at the trace output using the FT_Trace_Set_Level > function. I read that FT_DEBUG_LOGGING macro must be set for this > to work, so I tried doing this by passing: > -Dc_args='-D FT_DEBUG_LOGGING' > to meson setup. Alas, support for `FT_DEBUG_LOGGING` is not implemented in M

Need help compiling freetype with debug output enabled

2023-05-20 Thread Craig White
I am trying to look at the trace output using the FT_Trace_Set_Level function. I read that FT_DEBUG_LOGGING macro must be set for this to work, so I tried doing this by passing: -Dc_args='-D FT_DEBUG_LOGGING' to meson setup. After this, it complained about not finding dlg headers, so I stuffed mor