mike121 pushed a commit to branch wip-cygwin-guile-2.2 in repository guile.
commit 762dc83006f4677f125de78becf1144a9c16180b Author: Michael Gran <[email protected]> Date: Thu Mar 23 07:24:29 2017 -0700 use fallback nl_langinfo on cygwin --- libguile/i18n.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libguile/i18n.c b/libguile/i18n.c index 47179d1..9cf9a7a 100644 --- a/libguile/i18n.c +++ b/libguile/i18n.c @@ -40,7 +40,8 @@ #include <unicase.h> #include <unistr.h> -#if defined HAVE_NEWLOCALE && defined HAVE_STRCOLL_L && defined HAVE_USELOCALE + +#if defined HAVE_NEWLOCALE && defined HAVE_STRCOLL_L && defined HAVE_USELOCALE && ! defined __CYGWIN__ /* The GNU thread-aware locale API is documented in ``Thread-Aware Locale Model, a Proposal'', by Ulrich Drepper:
