git @ Cat's Eye Technologies Pixley / db5dc68
NetBSD's gcc's -pedantic is. Build haney only if ghc present. Cat's Eye Technologies 11 years ago
2 changed file(s) with 7 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
5656 switch (state->status) {
5757 case P_START:
5858 {
59 while (isspace(*(state->ptr))) {
59 while (isspace((int)*(state->ptr))) {
6060 state->ptr++;
6161 }
6262 if (*(state->ptr) == (char)0) {
7777 {
7878 char sym[128];
7979 int i = 0;
80 while (isalpha(*(state->ptr)) ||
81 isdigit(*(state->ptr)) ||
80 while (isalpha((int)*(state->ptr)) ||
81 isdigit((int)*(state->ptr)) ||
8282 *(state->ptr) == '*' ||
8383 *(state->ptr) == '-' ||
8484 *(state->ptr) == '_' ||
107107 state->child_result = NULL;
108108 state->prev = state->tail;
109109 }
110 while (isspace(*(state->ptr))) {
110 while (isspace((int)*(state->ptr))) {
111111 state->ptr++;
112112 }
113113 if (*(state->ptr) == (char)0) {
11
22 cd impl/mignon && ANSI=yes make || exit 1
33 cd ../..
4 cd impl/haney && make || exit 1
4 if [ ! x`which ghc` = x ]; then
5 cd impl/haney && make || exit 1
6 fi
57 cd ../..