adjust to not use cpp in modules used by configure
This commit is contained in:
parent
2ff9ba9f74
commit
e53a85743e
3 changed files with 19 additions and 10 deletions
|
@ -11,6 +11,7 @@ import Network.URI
|
||||||
import qualified Data.Map as M
|
import qualified Data.Map as M
|
||||||
import System.Posix.Types
|
import System.Posix.Types
|
||||||
import Utility.SafeCommand
|
import Utility.SafeCommand
|
||||||
|
import Utility.URI ()
|
||||||
|
|
||||||
{- Support repositories on local disk, and repositories accessed via an URL.
|
{- Support repositories on local disk, and repositories accessed via an URL.
|
||||||
-
|
-
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
- Licensed under the GNU GPL version 3 or higher.
|
- Licensed under the GNU GPL version 3 or higher.
|
||||||
-}
|
-}
|
||||||
|
|
||||||
{-# LANGUAGE CPP #-}
|
|
||||||
|
|
||||||
module Utility.Network where
|
module Utility.Network where
|
||||||
|
|
||||||
import Utility.Process
|
import Utility.Process
|
||||||
|
@ -14,14 +12,6 @@ import Utility.Exception
|
||||||
|
|
||||||
import Control.Applicative
|
import Control.Applicative
|
||||||
|
|
||||||
-- 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
|
|
||||||
|
|
||||||
{- Haskell lacks uname(2) bindings, except in the
|
{- Haskell lacks uname(2) bindings, except in the
|
||||||
- Bindings.Uname addon. Rather than depend on that,
|
- Bindings.Uname addon. Rather than depend on that,
|
||||||
- use uname -n when available. -}
|
- use uname -n when available. -}
|
||||||
|
|
18
Utility/URI.hs
Normal file
18
Utility/URI.hs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{- Network.URI
|
||||||
|
-
|
||||||
|
- Copyright 2014 Joey Hess <joey@kitenet.net>
|
||||||
|
-
|
||||||
|
- Licensed under the GNU GPL version 3 or higher.
|
||||||
|
-}
|
||||||
|
|
||||||
|
{-# 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
|
Loading…
Reference in a new issue