build error with happy-1.15 on ghc-6.6

per a previous thread, i addressed the 'package lang not found' issue by changing the following lines to: $ grep -rsn '\blang\b' . | grep Makefile ./happy/src/Makefile:27:SRC_HC_OPTS += #-package lang ./happy/tests/Makefile:62:HC_OPTS += -fglasgow-exts # -package lang however i still get a build error, seemingly from LALR.lhs: /usr/local/bin/ghc -H16m -O -cpp -fglasgow-exts -O -c LALR.lhs -o LALR.o -ohi LALR.hi LALR.lhs:626:34: Not in scope: `bounds' i wasn't able to find 'bounds' defined in any other of the src files. thanks in advance for any help.

On Sun, Jan 07, 2007 at 02:39:46AM -0800, Yang wrote:
/usr/local/bin/ghc -H16m -O -cpp -fglasgow-exts -O -c LALR.lhs -o LALR.o -ohi LALR.hi
LALR.lhs:626:34: Not in scope: `bounds'
You need to either get happy from its darcs repo or build a 1.16 release candidate: http://haskell.org/happy/happy-1.16rc2.tar.gz Thanks Ian
participants (2)
-
Ian Lynagh
-
Yang