summaryrefslogtreecommitdiff
path: root/git-annex.cabal
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-02-11 11:47:53 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-02-11 11:47:53 -0400
commit69cb6af4b7f6b16a69734d75ef5583bd2797c173 (patch)
tree2342a1c3b8ced54e0cde32afce963d643294a718 /git-annex.cabal
parent3ce402a4c63e4ac04ab788cfd3ad8ea964b402ef (diff)
Now uses the Haskell Glob library, rather than pcre-light, avoiding the need to install libpcre. Currently done only for Cabal or when the Makefile is made to use -DWITH_GLOB
Diffstat (limited to 'git-annex.cabal')
-rw-r--r--git-annex.cabal12
1 files changed, 6 insertions, 6 deletions
diff --git a/git-annex.cabal b/git-annex.cabal
index f9c0065c6..735a89239 100644
--- a/git-annex.cabal
+++ b/git-annex.cabal
@@ -57,16 +57,16 @@ Executable git-annex
Build-Depends: MissingH, hslogger, directory, filepath,
unix, containers, utf8-string, network (>= 2.0), mtl (>= 2.1.1),
bytestring, old-locale, time,
- pcre-light, extensible-exceptions, dataenc, SHA, process, json,
+ extensible-exceptions, dataenc, SHA, process, json,
base (>= 4.5 && < 4.8), monad-control, transformers-base, lifted-base,
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process,
- SafeSemaphore, UUID
+ SafeSemaphore, UUID, Glob
-- 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
+ GHC-Options: -threaded -DWITH_GLOB
if flag(S3)
Build-Depends: hS3
@@ -123,15 +123,15 @@ Test-Suite test
Main-Is: test.hs
Build-Depends: testpack, HUnit, MissingH, hslogger, directory, filepath,
unix, containers, utf8-string, network, mtl (>= 2.1.1), bytestring,
- old-locale, time, pcre-light, extensible-exceptions, dataenc, SHA,
+ old-locale, time, extensible-exceptions, dataenc, SHA,
process, json, HTTP, base (>= 4.5 && < 4.7), monad-control,
transformers-base, lifted-base, IfElse, text, QuickCheck >= 2.1,
- bloomfilter, edit-distance, process, SafeSemaphore
+ bloomfilter, edit-distance, process, SafeSemaphore, Glob
Other-Modules: Utility.Touch
Include-Dirs: Utility
C-Sources: Utility/libdiskfree.c
Extensions: CPP
- GHC-Options: -threaded
+ GHC-Options: -threaded -DWITH_GLOB
source-repository head
type: git