summaryrefslogtreecommitdiff
path: root/Utility
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-04-14 13:37:12 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-04-14 13:37:12 -0400
commit36969d80d4c921dea8f3b48465dd9a533f97ecae (patch)
tree247ff166015233316515d01efdd2537d402118cb /Utility
parent8129a9bd3397bf9b27bab3ae2b81855cc61753be (diff)
adjust to not use cpp in modules used by configure
Diffstat (limited to 'Utility')
-rw-r--r--Utility/Network.hs10
-rw-r--r--Utility/URI.hs18
2 files changed, 18 insertions, 10 deletions
diff --git a/Utility/Network.hs b/Utility/Network.hs
index 015c004d7..62523c9e9 100644
--- a/Utility/Network.hs
+++ b/Utility/Network.hs
@@ -5,8 +5,6 @@
- Licensed under the GNU GPL version 3 or higher.
-}
-{-# LANGUAGE CPP #-}
-
module Utility.Network where
import Utility.Process
@@ -14,14 +12,6 @@ import Utility.Exception
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
- Bindings.Uname addon. Rather than depend on that,
- use uname -n when available. -}
diff --git a/Utility/URI.hs b/Utility/URI.hs
new file mode 100644
index 000000000..39c2f2289
--- /dev/null
+++ b/Utility/URI.hs
@@ -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