diff options
author | Joey Hess <id@joeyh.name> | 2013-05-10 16:29:59 -0500 |
---|---|---|
committer | Joey Hess <id@joeyh.name> | 2013-05-10 16:29:59 -0500 |
commit | 5d0476bf59674b39fa6bad7e4446b5c741181143 (patch) | |
tree | 67897681b96fb9e79990033822e1a645de1f96a7 /Annex | |
parent | 812f7d6c564e297b67850f2aa4751141a8f68e99 (diff) |
stub out POSIX stuff
Diffstat (limited to 'Annex')
-rwxr-xr-x[-rw-r--r--] | Annex/Branch.hs | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | Annex/Content.hs | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | Annex/Environment.hs | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | Annex/Ssh.hs | 2 |
4 files changed, 6 insertions, 0 deletions
diff --git a/Annex/Branch.hs b/Annex/Branch.hs index 021cd3926..2304a3e49 100644..100755 --- a/Annex/Branch.hs +++ b/Annex/Branch.hs @@ -24,7 +24,9 @@ module Annex.Branch ( ) where import qualified Data.ByteString.Lazy.Char8 as L +#if 0 import System.Posix.Env +#endif import Common.Annex import Annex.BranchState diff --git a/Annex/Content.hs b/Annex/Content.hs index ad04bdba1..ad04bdba1 100644..100755 --- a/Annex/Content.hs +++ b/Annex/Content.hs diff --git a/Annex/Environment.hs b/Annex/Environment.hs index d0cd93c2c..d6755e287 100644..100755 --- a/Annex/Environment.hs +++ b/Annex/Environment.hs @@ -13,7 +13,9 @@ import Common.Annex import Utility.UserInfo import qualified Git.Config +#if 0 import System.Posix.Env +#endif import Network.BSD {- Checks that the system's environment allows git to function. diff --git a/Annex/Ssh.hs b/Annex/Ssh.hs index cf92bd248..f71d389c7 100644..100755 --- a/Annex/Ssh.hs +++ b/Annex/Ssh.hs @@ -14,7 +14,9 @@ module Annex.Ssh ( ) where import qualified Data.Map as M +#if 0 import System.Posix.Env +#endif import Common.Annex import Annex.LockPool |