diff options
author | Joey Hess <joey@kitenet.net> | 2014-04-21 10:47:26 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-04-21 10:47:26 -0400 |
commit | 443c7fc6feef3f75ab6552dadf40fb15fd335b82 (patch) | |
tree | beb683bd5f523838e49b46d2089f9f344dfda308 /Utility | |
parent | 70ee4c10f311df3b084108f72153d6e87063abfb (diff) |
fix distributionupdate build
Including avoiding needing cabal's defines for Utility.URI
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/URI.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Utility/URI.hs b/Utility/URI.hs index 39c2f2289..240159609 100644 --- a/Utility/URI.hs +++ b/Utility/URI.hs @@ -10,9 +10,11 @@ module Utility.URI where -- Old versions of network lacked an Ord for URI +#ifdef VERSION_network #if ! MIN_VERSION_network(2,4,0) import Network.URI instance Ord URI where a `compare` b = show a `compare` show b #endif +#endif |