summaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2012-06-30 07:07:05 -0400
committerClint Adams <clint@debian.org>2012-06-30 07:07:05 -0400
commit138907db4677220dd4bfe17cc243220cd37762db (patch)
tree73104d10535c915fffc78c86464896bdfeb4fd1b /pandoc.cabal
parentf16ccad90c42feb754b6bc13d107759a04bb31c7 (diff)
Imported Upstream version 1.9.4.2
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal32
1 files changed, 22 insertions, 10 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 06491e20d..b4c74125f 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -1,5 +1,5 @@
Name: pandoc
-Version: 1.9.4.1
+Version: 1.9.4.2
Cabal-Version: >= 1.10
Build-Type: Custom
License: GPL
@@ -100,6 +100,8 @@ Extra-Source-Files:
Benchmark.hs,
-- tests
tests/bodybg.gif,
+ tests/docbook-reader.docbook
+ tests/docbook-reader.native
tests/html-reader.html,
tests/html-reader.native,
tests/insert,
@@ -233,10 +235,13 @@ Library
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
else
Build-depends: base >= 3 && < 4
- if impl(ghc >= 6.12)
- Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
+ if impl(ghc >= 7.0.1)
+ Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output
else
- Ghc-Options: -O2 -Wall
+ if impl(ghc >= 6.12)
+ Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
+ else
+ Ghc-Options: -O2 -Wall
if impl(ghc >= 7.0.1)
Ghc-Prof-Options: -auto-all -caf-all -rtsopts
else
@@ -338,10 +343,13 @@ Executable pandoc
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
else
Build-depends: base >= 3 && < 4
- if impl(ghc >= 6.12)
- Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
+ if impl(ghc >= 7.0.1)
+ Ghc-Options: -O2 -rtsopts -threaded -Wall -fno-warn-unused-do-bind -dno-debug-output
else
- Ghc-Options: -O2 -Wall
+ if impl(ghc >= 6.12)
+ Ghc-Options: -O2 -Wall -threaded -fno-warn-unused-do-bind -dno-debug-output
+ else
+ Ghc-Options: -O2 -Wall -threaded
if impl(ghc >= 7.0.1)
Ghc-Prof-Options: -auto-all -caf-all -rtsopts
else
@@ -402,10 +410,13 @@ Executable test-pandoc
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
else
Build-depends: base >= 3 && < 4
- if impl(ghc >= 6.12)
- Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
+ if impl(ghc >= 7.0.1)
+ Ghc-Options: -O2 -rtsopts -threaded -Wall -fno-warn-unused-do-bind -dno-debug-output
else
- Ghc-Options: -O2 -Wall
+ if impl(ghc >= 6.12)
+ Ghc-Options: -O2 -Wall -threaded -fno-warn-unused-do-bind -dno-debug-output
+ else
+ Ghc-Options: -O2 -Wall -threaded
if impl(ghc >= 7.0.1)
Ghc-Prof-Options: -auto-all -caf-all -rtsopts
else
@@ -445,3 +456,4 @@ Executable test-pandoc
Tests.Writers.ConTeXt
Tests.Writers.HTML
Tests.Writers.Markdown
+ Tests.Writers.LaTeX