diff -r acpica-unix-20030619-modified/compiler/aslcompiler.l acpica-unix-20030619/compiler/aslcompiler.l 806d805 < c = (char) input(); 808,809c807 < loop2: < while (c != '*' && c != EOF) --- > while ((c = (char) input()) != '*' && c != EOF) 813d810 < c = (char) input(); 839,842c836,837 < c = c1; < /* unput(c1); */ < /* unput poses problem with this braindead cpp */ < goto loop2; --- > unput(c1); > goto loop; diff -r acpica-unix-20030619-modified/compiler/aslcompiler.y acpica-unix-20030619/compiler/aslcompiler.y 190c190 < /* %token PARSEOP_ACCESSATTRIB_WORD_CALL */ --- > %token PARSEOP_ACCESSATTRIB_WORD_CALL diff -r acpica-unix-20030619-modified/compiler/Makefile acpica-unix-20030619/compiler/Makefile 92d91 < CC=gcc-2.95