Description
Low-level networking interface.
Description
This package provides a low-level networking interface.
In network-2.6 the Network.URI
module was split off into its own package, network-uri-2.6. If you're using the Network.URI
module you can automatically get it from the right package by adding this to your .cabal file:
flag network-uri
description: Get Network.URI from the network-uri package
default: True
library
-- ...
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
build-depends: network-uri < 2.6, network < 2.6
That is, get the module from either network < 2.6 or from network-uri >= 2.6.
README.md
network
To build this package using Cabal directly from git, you must run autoreconf
before the usual Cabal build steps (configure/build/install). autoreconf
is included in the GNU Autoconf tools. There is no need to run the configure
script: the setup configure
step will do this for you.