Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
Packages
Cabal
Commits
dd47efb8
Commit
dd47efb8
authored
Aug 24, 2008
by
Ian Lynagh
Browse files
We now depend on concurrent (split off from base)
parent
4055fdab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Cabal.cabal
View file @
dd47efb8
...
...
@@ -27,20 +27,29 @@ Extra-Source-Files:
Distribution/Simple/GHC/mkGHCMakefile.sh
Distribution/Simple/GHC/Makefile.in
Flag small_base
Description: Choose the new smaller, split-up base package.
Flag base4
Description: Choose the even newer, even smaller, split-up base package.
Flag base3
Description: Choose the new smaller, split-up base package.
Library
if flag(small_base)
Build-Depends: base >= 3 && < 5,
directory >= 1 && < 1.1,
if flag(base4)
Build-Depends: base >= 4 && < 5
if flag(base3)
Build-Depends: base >= 3 && < 4
if !flag(base3) && !flag(base4)
Build-Depends: base < 3
if flag(base4)
Build-Depends: concurrent >= 0.1 && < 0.2
if flag(base3) || flag(base4)
Build-Depends: directory >= 1 && < 1.1,
process >= 1 && < 1.1,
old-time >= 1 && < 1.1,
containers >= 0.1 && < 0.2,
array >= 0.1 && < 0.2,
pretty >= 1 && < 1.1
else
Build-Depends: base < 3
Build-Depends: filepath >= 1 && < 1.2
GHC-Options: -Wall
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment