bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #14684] make fails if LC_CTYPE is iso_8859_1


From: DAvid Byers
Subject: [bug #14684] make fails if LC_CTYPE is iso_8859_1
Date: Mon, 3 Apr 2006 12:58:44 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1

Follow-up Comment #8, bug #14684 (project make):

On Solaris 10, with LC_CTYPE set to iso_8859_1, isblank returns zero for
isblank('\t'), which (at least for me) causes the problem described in the
original report.

The following program demonstrates the issue:

#include <stdio.h>
#include <ctype.h>
#include <locale.h>

int main(int argc,char** argv) {
  setlocale(LC_ALL,"");
  printf("isblank=%d\n", isblank('\t'));
}

This behavior seems to be consistent, and it seems to be a bug in Solaris
rather than in make. I wonder, though, if make should maybe check for a
working isblank in the configure script?


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=14684>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]