summaryrefslogtreecommitdiff
path: root/Remote/List.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-11-14 20:25:00 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-11-14 20:25:31 -0400
commitca0c3f90bffd314b04ce4f85c800acbba385bcf6 (patch)
treefa648018608d2bb0afa24d4539978f2d16c756d1 /Remote/List.hs
parent50548a7496bd72dcdd5b582f88c9bcad3522f3f9 (diff)
skeltal webdav special remote
Doesn't actually store anything yet, but initremote works and tests the server.
Diffstat (limited to 'Remote/List.hs')
-rw-r--r--Remote/List.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Remote/List.hs b/Remote/List.hs
index ea1d61ce3..a25533bb1 100644
--- a/Remote/List.hs
+++ b/Remote/List.hs
@@ -29,6 +29,9 @@ import qualified Remote.Bup
import qualified Remote.Directory
import qualified Remote.Rsync
import qualified Remote.Web
+#ifdef WITH_WEBDAV
+import qualified Remote.WebDAV
+#endif
import qualified Remote.Hook
remoteTypes :: [RemoteType]
@@ -41,6 +44,9 @@ remoteTypes =
, Remote.Directory.remote
, Remote.Rsync.remote
, Remote.Web.remote
+#ifdef WITH_WEBDAV
+ , Remote.WebDAV.remote
+#endif
, Remote.Hook.remote
]