git-annex/standalone/android/haskell-patches/HTTP_4000.2.8-0001-build-with-base-4.8.patch

32 lines
908 B
Diff
Raw Normal View History

2013-05-07 23:18:21 +00:00
From 32d0741c64e6bd280e46f7c452db9462fbac05f9 Mon Sep 17 00:00:00 2001
2013-05-07 22:18:01 +00:00
From: Joey Hess <joey@kitenet.net>
2013-05-07 23:18:21 +00:00
Date: Tue, 7 May 2013 18:21:04 -0400
Subject: [PATCH] fix build
2013-05-07 22:18:01 +00:00
---
2013-05-07 23:18:21 +00:00
HTTP.cabal | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
2013-05-07 22:18:01 +00:00
diff --git a/HTTP.cabal b/HTTP.cabal
2013-05-07 23:18:21 +00:00
index 76cb5d6..edddf26 100644
2013-05-07 22:18:01 +00:00
--- a/HTTP.cabal
+++ b/HTTP.cabal
2013-05-07 23:18:21 +00:00
@@ -85,12 +85,12 @@ Library
2013-05-07 22:18:01 +00:00
Network.HTTP.Utils
Paths_HTTP
GHC-options: -fwarn-missing-signatures -Wall
- Build-depends: base >= 2 && < 4.7, network < 2.5, parsec
+ Build-depends: base >= 2 && < 4.8, network < 2.5, parsec
Extensions: FlexibleInstances
if flag(old-base)
Build-depends: base < 3
2013-05-07 23:18:21 +00:00
else
- Build-depends: base >= 3, array, old-time, bytestring
+ Build-depends: base >= 3, array, old-time, bytestring (>= 0.10.3.0)
if flag(mtl1)
Build-depends: mtl >= 1.1 && < 1.2
2013-05-07 22:18:01 +00:00
--
1.7.10.4