diff --git a/hxt-http.cabal b/hxt-http.cabal
--- a/hxt-http.cabal
+++ b/hxt-http.cabal
@@ -1,10 +1,12 @@
 Name:           hxt-http
-Version:        9.1.5.1
+Version:        9.1.5.2
 Synopsis:       Interface to native Haskell HTTP package HTTP
 Description:    Interface to native Haskell HTTP package HTTP.
                 This package can be used as alternative for the hxt-curl package
                 for accessing documents via HTTP.
                 .
+                Changes from 9.1.3: Works with ghc-7.10
+                .
                 Changes to 9.1.3: New warnings from ghc-7.4 removed
 License:        MIT
 License-file:   LICENSE
@@ -18,7 +20,9 @@
 Cabal-version:  >=1.6
 
 flag network-uri
-  description: Get Network.URI from the network-uri package
+  description: Get Network.URI from the network-uri package,
+               with ghc <  7.10 default is False,
+               with ghc >= 7.10 default is True 
   default: False
 
 library
@@ -46,7 +50,11 @@
    build-depends: network-uri >= 2.6,
                   network     >= 2.6
  else
-   build-depends: network < 2.6
+   if impl(ghc >= 7.10)
+     build-depends: network-uri >= 2.6,
+                    network     >= 2.6
+   else
+     build-depends: network >= 2.4 && < 2.6
 
 Source-Repository head
   Type:     git
