2014-04-14 17:37:12 +00:00
|
|
|
{- Network.URI
|
|
|
|
-
|
|
|
|
- Copyright 2014 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2014-04-14 17:37:12 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
|
|
module Utility.URI where
|
|
|
|
|
|
|
|
-- Old versions of network lacked an Ord for URI
|
|
|
|
#if ! MIN_VERSION_network(2,4,0)
|
|
|
|
import Network.URI
|
|
|
|
|
|
|
|
instance Ord URI where
|
|
|
|
a `compare` b = show a `compare` show b
|
|
|
|
#endif
|