summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawnk-eq4nMw6sXtPTACBI_xyeBmj7FZBWZs <Magnus@web>2013-10-26 07:36:25 +0000
committerGravatar admin <admin@branchable.com>2013-10-26 07:36:25 +0000
commitc662dda2e4bb04230c36d7310f84d69858b826b1 (patch)
treee7b337637228fe97186f560bcbec3b4c44779c44 /doc
parente60c8e24bb146e12d3f68aaf89dc95db849fbeca (diff)
Diffstat (limited to 'doc')
-rw-r--r--doc/bugs/Build_error_on_Linux.mdwn26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/bugs/Build_error_on_Linux.mdwn b/doc/bugs/Build_error_on_Linux.mdwn
new file mode 100644
index 000000000..cc46d18dd
--- /dev/null
+++ b/doc/bugs/Build_error_on_Linux.mdwn
@@ -0,0 +1,26 @@
+### Please describe the problem.
+Building on Linux, with a particular combination of flags, failed due to missing `async`.
+
+### What steps will reproduce the problem?
+1. Configure with the following flag combination
+
+ cryptohash -quvi -feed tdfa -testsuite -android production -dns -xmpp -pairing -webapp -assistant dbus inotify -webdav s3
+
+2. Attempt to build and you'll get an error on line 16 of `Utility/Batch.hs` because `Control.Concurrent.Async` isn't available.
+
+### What version of git-annex are you using? On what operating system?
+Version 4.20131024 on Linux
+
+### Please provide any additional information below.
+
+This is the patch I applied to `git-annex.cabal`:
+
+ CPP-Options: -DWITH_KQUEUE
+ C-Sources: Utility/libkqueue.c
+
+ + if os(linux)
+ + Build-Depends: async
+ +
+ if os(linux) && flag(Dbus)
+ Build-Depends: dbus (>= 0.10.3)
+ CPP-Options: -DWITH_DBUS