diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-17 11:57:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-17 11:57:03 -0400 |
commit | 8543d9add4c717987ce4b8bbd44b285b4963c125 (patch) | |
tree | 05d3ec15d0c6bc0753f20ff0d1b958926cbce49c /configure.hs | |
parent | 7b5b1276085be3d2c12c8c28b7be1aceccae44f9 (diff) |
check for curl in configure, thanks Jimmy
Diffstat (limited to 'configure.hs')
-rw-r--r-- | configure.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.hs b/configure.hs index 772ba5489..f5c295648 100644 --- a/configure.hs +++ b/configure.hs @@ -13,6 +13,7 @@ tests = [ , TestCase "uuid generator" $ selectCmd "uuid" ["uuid", "uuidgen"] , TestCase "xargs -0" $ requireCmd "xargs_0" "xargs -0 </dev/null" , TestCase "rsync" $ requireCmd "rsync" "rsync --version >/dev/null" + , TestCase "curl" $ testCmd "curl" "curl --version >/dev/null" , TestCase "unicode FilePath support" $ unicodeFilePath ] ++ shaTestCases [1, 256, 512, 224, 384] |