Include <xlocale.h> for older macOS.

Commit 35eeea62 forgot to include <xlocale.h> when using locale_t
(which didn't seem to be required on newer Apple SDK as used by CI,
hence mistake).  Let's see if this fixes build farm animals longfin and
sifika.
This commit is contained in:
Thomas Munro 2024-08-13 23:02:05 +12:00
parent 35eeea6230
commit 52ea7f0e05

View File

@ -23,6 +23,10 @@
#include <langinfo.h>
#endif
#ifdef LOCALE_T_IN_XLOCALE_H
#include <xlocale.h>
#endif
#include "mb/pg_wchar.h"