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/



_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to