summaryrefslogtreecommitdiff
path: root/Remote
diff options
context:
space:
mode:
Diffstat (limited to 'Remote')
-rw-r--r--Remote/List.hs4
-rw-r--r--Remote/Web.hs13
2 files changed, 0 insertions, 17 deletions
diff --git a/Remote/List.hs b/Remote/List.hs
index 07675508f..9c231b124 100644
--- a/Remote/List.hs
+++ b/Remote/List.hs
@@ -34,9 +34,7 @@ import qualified Remote.BitTorrent
#ifdef WITH_WEBDAV
import qualified Remote.WebDAV
#endif
-#ifdef WITH_TAHOE
import qualified Remote.Tahoe
-#endif
import qualified Remote.Glacier
import qualified Remote.Ddar
import qualified Remote.Hook
@@ -57,9 +55,7 @@ remoteTypes =
#ifdef WITH_WEBDAV
, Remote.WebDAV.remote
#endif
-#ifdef WITH_TAHOE
, Remote.Tahoe.remote
-#endif
, Remote.Glacier.remote
, Remote.Ddar.remote
, Remote.Hook.remote
diff --git a/Remote/Web.hs b/Remote/Web.hs
index 6b91ddfc0..033057dd8 100644
--- a/Remote/Web.hs
+++ b/Remote/Web.hs
@@ -5,8 +5,6 @@
- Licensed under the GNU GPL version 3 or higher.
-}
-{-# LANGUAGE CPP #-}
-
module Remote.Web (remote, getWebUrls) where
import Annex.Common
@@ -20,10 +18,8 @@ import Logs.Web
import Annex.UUID
import Utility.Metered
import qualified Annex.Url as Url
-#ifdef WITH_QUVI
import Annex.Quvi
import qualified Utility.Quvi as Quvi
-#endif
remote :: RemoteType
remote = RemoteType {
@@ -82,13 +78,8 @@ downloadKey key _af dest p = unVerified $ get =<< getWebUrls key
let (u', downloader) = getDownloader u
case downloader of
QuviDownloader -> do
-#ifdef WITH_QUVI
flip (downloadUrl key p) dest
=<< withQuviOptions Quvi.queryLinks [Quvi.httponly, Quvi.quiet] u'
-#else
- warning "quvi support needed for this url"
- return False
-#endif
_ -> downloadUrl key p [u'] dest
downloadKeyCheap :: Key -> AssociatedFile -> FilePath -> Annex Bool
@@ -116,11 +107,7 @@ checkKey' key us = firsthit us (Right False) $ \u -> do
showChecking u'
case downloader of
QuviDownloader ->
-#ifdef WITH_QUVI
Right <$> withQuviOptions Quvi.check [Quvi.httponly, Quvi.quiet] u'
-#else
- return $ Left "quvi support needed for this url"
-#endif
_ -> do
Url.withUrlOptions $ catchMsgIO .
Url.checkBoth u' (keySize key)