cabal configure -fpure looks for an fl-pure.hs file, as does make.sh if there is no fl.hs (which there is). I guess that fl.hs used to be fl-pure.hs.
The result of this is that cabal build doesn't work if configured with the pure flag, which means that regular old cabal configure needs to be used, which imposes a parsec dependency.
However, the library can't be built without parsec anyway, as the type checker pulls it in, so either the pure flag should just be removed (and make.sh updated to reflect that), or the code should be updated to allow a build without parsec.
cabal configure -fpurelooks for anfl-pure.hsfile, as doesmake.shif there is nofl.hs(which there is). I guess thatfl.hsused to befl-pure.hs.The result of this is that
cabal builddoesn't work if configured with thepureflag, which means that regular oldcabal configureneeds to be used, which imposes a parsec dependency.However, the library can't be built without parsec anyway, as the type checker pulls it in, so either the pure flag should just be removed (and
make.shupdated to reflect that), or the code should be updated to allow a build without parsec.