aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-09-08 06:36:28 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-09-08 06:36:28 +0000
commit000b89c718fdef3790a56fad9cbbfcdcf7fbea52 (patch)
tree9603419213adad41e8b246a4ae660cf206d04e42 /pandoc.cabal
parent2e893b43c4b0536957d46289e7f64b4943734bda (diff)
downloadpandoc-000b89c718fdef3790a56fad9cbbfcdcf7fbea52.tar.gz
Use Data.List's 'intercalate' instead of custom 'joinWithSep'.
+ Removed joinWithSep definition from Text.Pandoc.Shared. + Replaced joinWithSep with intercalate + Depend on base >= 3, since in base < 3 intercalate is not included. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1428 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal12
1 files changed, 3 insertions, 9 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 94a2623af..752141592 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -120,9 +120,6 @@ Extra-Source-Files:
Extra-Tmp-Files: man/man1/pandoc.1, man/man1/hsmarkdown.1,
man/man1/html2markdown.1
-Flag splitBase
- Description: Choose the new, smaller, split-up base package.
- Default: True
Flag highlighting
Description: Compile in support for syntax highlighting of code blocks.
Default: False
@@ -137,10 +134,9 @@ Flag citeproc
Default: False
Library
- if flag(splitBase)
- Build-Depends: base >= 3, pretty, containers
- else
- Build-Depends: base < 3
+ Build-Depends: base >= 3, pretty, containers, parsec < 3, xhtml, mtl, network,
+ filepath, process, directory, template-haskell, bytestring,
+ zip-archive, utf8-string, old-time
if flag(highlighting)
Build-depends: highlighting-kate
cpp-options: -D_HIGHLIGHTING
@@ -148,8 +144,6 @@ Library
Build-depends: citeproc-hs
Exposed-Modules: Text.Pandoc.Biblio
cpp-options: -D_CITEPROC
- Build-Depends: parsec < 3, xhtml, mtl, network, filepath, process, directory,
- template-haskell, bytestring, zip-archive, utf8-string, old-time
Hs-Source-Dirs: .
Exposed-Modules: Text.Pandoc,
Text.Pandoc.Blocks,