mmitch / gbsplay

gameboy sound player
https://mmitch.github.io/gbsplay/
Other
98 stars 19 forks source link

fix build errors on MacOS regarding i18n #129

Open mmitch opened 2 months ago

mmitch commented 2 months ago

The MacOS test pipeline started to fail recently. The error occurs in the step Check build Flags: We expect configure to set use_i18n, but the flag is unset.

On older, working builds the configure script logged this:

checking if stdout converts line endings:  no
checking for locale.h:  ok
checking for libintl.h:  ok
checking for gettext tools:  ok
checking if we need additional libs for intl:  yes
looking for -lintl:  ok
checking for doxygen:  not found

Now with the failure configure logs this:

checking if stdout converts line endings:  no
checking for locale.h:  ok
checking for libintl.h:  not found
checking for libintl.h in /usr/local/include:  not found
checking for libintl.h in /opt/local/include:  not found
checking for gettext tools:  ok
checking for doxygen:  not found

So libintl.h has gone AWOL, perhaps due to an update of the build agent.