git-annex.cabal: Once more try to not build the assistant on the hurd, hopefully hackage finally recognises that OS.

Last try was in 2015 https://github.com/haskell/hackage-server/issues/269
This commit is contained in:
Joey Hess 2018-02-18 11:09:16 -04:00
parent f5bc4065c4
commit bbdfdaa833
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 4 additions and 2 deletions

View file

@ -13,6 +13,8 @@ git-annex (6.20180113) UNRELEASED; urgency=medium
* --json: When there are multiple lines of notes about a file, make the note
field multiline, rather than the old behavior of only including the
last line.
* git-annex.cabal: Once more try to not build the assistant on the hurd,
hopefully hackage finally recognises that OS.
-- Joey Hess <id@joeyh.name> Wed, 24 Jan 2018 20:42:55 -0400

View file

@ -411,7 +411,7 @@ Executable git-annex
Remote.WebDAV
Remote.WebDAV.DavLocation
if flag(Assistant) && ! os(solaris)
if flag(Assistant) && ! os(solaris) && ! os(gnu)
Build-Depends: dns (>= 1.0.0), mountpoints
CPP-Options: -DWITH_ASSISTANT
@ -431,7 +431,7 @@ Executable git-annex
CPP-Options: -DWITH_WIN32NOTIFY
Other-Modules: Utility.DirWatcher.Win32Notify
else
if (! os(solaris) && ! os(linux))
if (! os(solaris) && ! os(gnu) && ! os(linux))
CPP-Options: -DWITH_KQUEUE
C-Sources: Utility/libkqueue.c
Includes: Utility/libkqueue.h