On Thu, Mar 17, 2011 at 3:54 AM, tsuraan <[email protected]> wrote: >> So Curl is out-of-spec here. However, we should be sending back a 411 >> response instead of trying to read a request body which will never >> come. Please open a bug on >> http://github.com/snapframework/snap-core/issues. > > Ok, it's bug 61.
Thank you! > After I do an update, then new packages that I install seem to > auto-upgrade their dependencies. For example, I had array 0.3.0.1 > installed. I then did a cabal update, so I could get the latest > snap-0.4.1. Upon re-installing snap, my array library was upgraded to > 0.3.0.2, but I still had a ton of libraries that were built against > (and still set to use) array-0.3.0.1, so cabal yells at me when trying > to compile my program, because it requires both array-0.3.0.1 and > 0.3.0.2. Anyhow, I guess this is more of a general haskell issue than > a snap issue. It's just something I only run into when upgrading snap > because that's really the biggest project that I use right now. I > haven't really had to upgrade anything else that has had dependencies. Yep -- unfortunately this is an annoying fact of life re: using Cabal. If you use "cabal install foo" then cabal should recompute all dependencies and rebuild what needs to be rebuilt, if you use "cabal configure; cabal build" within a project then it won't. G -- Gregory Collins <[email protected]> _______________________________________________ Snap mailing list [email protected] http://mailman-mail5.webfaction.com/listinfo/snap
