build fixes
This commit is contained in:
parent
32d3cffc4c
commit
e6ce54de82
4 changed files with 20 additions and 6 deletions
|
@ -25,7 +25,7 @@ import qualified Remote
|
|||
thisThread :: ThreadName
|
||||
thisThread = "Merger"
|
||||
|
||||
{- This thread watches for changes to .git/refs/heads/synced/*,
|
||||
{- This thread watches for changes to .git/refs/heads/synced/,
|
||||
- which indicate incoming pushes. It merges those pushes into the
|
||||
- currently checked out branch. -}
|
||||
mergeThread :: ThreadState -> IO ()
|
||||
|
|
6
debian/control
vendored
6
debian/control
vendored
|
@ -24,6 +24,12 @@ Build-Depends:
|
|||
libghc-stm-dev (>= 2.3),
|
||||
libghc-dbus-dev,
|
||||
libghc-yesod-dev,
|
||||
libghc-case-insensitive-dev,
|
||||
libghc-http-types-dev,
|
||||
libghc-transformers-dev,
|
||||
libghc-wai-dev,
|
||||
libghc-wai-logger-dev,
|
||||
libghc-warp-dev,
|
||||
ikiwiki,
|
||||
perlmagick,
|
||||
git,
|
||||
|
|
|
@ -42,14 +42,19 @@ To build and use git-annex, you will need:
|
|||
* [bloomfilter](http://hackage.haskell.org/package/bloomfilter)
|
||||
* [edit-distance](http://hackage.haskell.org/package/edit-distance)
|
||||
* [hS3](http://hackage.haskell.org/package/hS3) (optional)
|
||||
* Optional haskell stuff, used by the assistant and webapp (edit Makefile to disable)
|
||||
* [stm](http://hackage.haskell.org/package/stm)
|
||||
(optional; version 2.3 or newer)
|
||||
(version 2.3 or newer)
|
||||
* [hinotify](http://hackage.haskell.org/package/hinotify)
|
||||
(optional; Linux only)
|
||||
(Linux only)
|
||||
* [dbus](http://hackage.haskell.org/package/dbus)
|
||||
(optional)
|
||||
* [yesod](http://hackage.haskell.org/package/yesod)
|
||||
(optional; for webapp)
|
||||
* [case-insensitive](http://hackage.haskell.org/package/case-insensitive)
|
||||
* [http-types](http://hackage.haskell.org/package/http-types)
|
||||
* [transformers](http://hackage.haskell.org/package/transformers)
|
||||
* [wai](http://hackage.haskell.org/package/wai)
|
||||
* [wai-logger](http://hackage.haskell.org/package/wai-logger)
|
||||
* [warp](http://hackage.haskell.org/package/warp)
|
||||
* Shell commands
|
||||
* [git](http://git-scm.com/)
|
||||
* [uuid](http://www.ossp.org/pkg/lib/uuid/)
|
||||
|
|
|
@ -46,9 +46,11 @@ Executable git-annex
|
|||
unix, containers, utf8-string, network, mtl, bytestring, old-locale, time,
|
||||
pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP,
|
||||
base == 4.5.*, monad-control, transformers-base, lifted-base,
|
||||
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
|
||||
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process,
|
||||
case-insensitive, http-types, transformers, wai, wai-logger, warp
|
||||
-- Need to list these because they're generated from .hsc files.
|
||||
Other-Modules: Utility.Touch Utility.Mounts
|
||||
Include-Dirs: Utility
|
||||
C-Sources: Utility/libdiskfree.c Utility/libmounts.c
|
||||
Extensions: CPP
|
||||
GHC-Options: -threaded
|
||||
|
@ -88,6 +90,7 @@ Test-Suite test
|
|||
base == 4.5.*, monad-control, transformers-base, lifted-base,
|
||||
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
|
||||
Other-Modules: Utility.Touch
|
||||
Include-Dirs: Utility
|
||||
C-Sources: Utility/libdiskfree.c
|
||||
Extensions: CPP
|
||||
GHC-Options: -threaded
|
||||
|
|
Loading…
Reference in a new issue