On Sun, Oct 16, 2022 at 12:36:21AM +0800, Yonggang Luo via Elfutils-devel wrote: > So we do not need include in each file. > And indeed the macro > #define _(Str) dgettext ("elfutils", Str) > access libintl function dgettext, so it's make more sense > #include <libintl.h> in file eu-config.h
And this works because we include eu-config.h in config.h. All files where libintl.h is removed includes config.h, except for libdwP.h and libeblP.h, but it isn't expected there. Pushed, Mark