Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support network 2.6.* and network-uri #73

Merged
merged 1 commit into from
Aug 24, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion HTTP.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ Flag warp-tests
default: True
manual: True

flag network-uri
description: Get Network.URI from the network-uri package
default: True

Library
Exposed-modules:
Network.BufferType,
Expand Down Expand Up @@ -110,7 +114,10 @@ Library
-- GHC 6.10 and later versions of network
Build-depends: network >= 2.2.0.1 && < 2.3
else
Build-depends: network >= 2.2.0.1 && < 2.6
if flag(network-uri)
Build-depends: network-uri == 2.6.*, network == 2.6.*
else
Build-depends: network >= 2.2.0.1 && < 2.6

build-tools: ghc >= 6.10 && < 7.10

Expand Down