Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work around for haskell/cabal#1725 #8

Merged
merged 1 commit into from
Jun 16, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions SHA.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,11 @@ Executable sha1
if !flag(exe)
buildable: False
hs-source-dirs: src-bin
build-depends: base >= 4 && < 6,
bytestring > 0.8 && < 10000,
directory > 0.0 && < 10000,
SHA > 1.6 && < 10000
if flag(exe)
build-depends: base >= 4 && < 6,
bytestring > 0.8 && < 10000,
directory > 0.0 && < 10000,
SHA > 1.6 && < 10000
Main-Is: Main.hs
extensions: CPP
GHC-Options: -O2 -Wall -fno-ignore-asserts -fno-warn-orphans
Expand All @@ -90,10 +91,11 @@ Executable sha384
if !flag(exe)
buildable: False
hs-source-dirs: src-bin
build-depends: base >= 4 && < 6,
bytestring > 0.8 && < 10000,
directory > 0.0 && < 10000,
SHA > 1.6 && < 10000
if flag(exe)
build-depends: base >= 4 && < 6,
bytestring > 0.8 && < 10000,
directory > 0.0 && < 10000,
SHA > 1.6 && < 10000
GHC-Options: -O2 -Wall -fno-ignore-asserts -fno-warn-orphans
-funbox-strict-fields -fwarn-tabs
Main-Is: Main.hs
Expand Down