summaryrefslogtreecommitdiff
path: root/Build/BundledPrograms.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Build/BundledPrograms.hs')
-rw-r--r--Build/BundledPrograms.hs9
1 files changed, 7 insertions, 2 deletions
diff --git a/Build/BundledPrograms.hs b/Build/BundledPrograms.hs
index 9a50778d4..87232ebec 100644
--- a/Build/BundledPrograms.hs
+++ b/Build/BundledPrograms.hs
@@ -24,9 +24,13 @@ bundledPrograms = catMaybes
, Just "git"
#endif
, Just "cp"
+#ifndef mingw32_HOST_OS
+ -- using xargs on windows led to problems, so it's not used there
, Just "xargs"
+#endif
, Just "rsync"
, Just "ssh"
+ , Just "ssh-keygen"
#ifndef mingw32_HOST_OS
, Just "sh"
#endif
@@ -35,13 +39,14 @@ bundledPrograms = catMaybes
, ifset SysConfig.wget "wget"
, ifset SysConfig.bup "bup"
, SysConfig.lsof
+ , SysConfig.gcrypt
, SysConfig.sha1
, SysConfig.sha256
, SysConfig.sha512
, SysConfig.sha224
, SysConfig.sha384
- -- ionice is not included in the bundle; we rely on the system's
- -- own version, which may better match its kernel
+ -- nice and ionice are not included in the bundle; we rely on the
+ -- system's own version, which may better match its kernel
]
where
ifset True s = Just s