diff --git a/debian/changelog b/debian/changelog index ae0e2c7581..79e56d9496 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +git-annex (5.20140928) UNRELEASED; urgency=medium + + * Adjust cabal file to support building w/o assistant on the hurd. + + -- Joey Hess Mon, 29 Sep 2014 14:07:51 -0400 + git-annex (5.20140927) unstable; urgency=medium * Really depend (not just build-depend) on new enough git for --no-gpg-sign diff --git a/git-annex.cabal b/git-annex.cabal index 84448eca7d..fe5a8bb276 100644 --- a/git-annex.cabal +++ b/git-annex.cabal @@ -153,7 +153,7 @@ Executable git-annex Build-Depends: DAV (>= 1.0), http-client CPP-Options: -DWITH_WEBDAV - if flag(Assistant) && ! os(solaris) + if flag(Assistant) && ! os(solaris) && ! os(gnu) CPP-Options: -DWITH_ASSISTANT if flag(Assistant) @@ -174,8 +174,9 @@ Executable git-annex Build-Depends: hinotify CPP-Options: -DWITH_INOTIFY else - CPP-Options: -DWITH_KQUEUE - C-Sources: Utility/libkqueue.c + if ! os(gnu) + CPP-Options: -DWITH_KQUEUE + C-Sources: Utility/libkqueue.c if (os(linux)) if flag(Dbus)