summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2010-07-31 00:17:45 +0200
committerJonas Smedegaard <dr@jones.dk>2010-07-31 00:17:45 +0200
commitb004ae6518eeae2fbbbfb2b2436fc87555172394 (patch)
tree89805500bc31b03b721c54906c1b17235d99b1af /debian/patches
parentdd816fc84708ee8771be969f51244e9dffdfe560 (diff)
Drop patch 0001 now included upstream.
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/0001_threaded.patch40
-rw-r--r--debian/patches/README3
-rw-r--r--debian/patches/series1
3 files changed, 0 insertions, 44 deletions
diff --git a/debian/patches/0001_threaded.patch b/debian/patches/0001_threaded.patch
deleted file mode 100644
index 03ed9e3e7..000000000
--- a/debian/patches/0001_threaded.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-Description: Implement configure option -threaded
-Author: John MacFarlane <jgm@berkeley.edu>
-Forwarded: not-needed
-Last-Update: 2010-04-21
---- a/pandoc.cabal
-+++ b/pandoc.cabal
-@@ -124,6 +124,9 @@
- tests/RunTests.hs
- Extra-Tmp-Files: man/man1/pandoc.1, man/man1/markdown2pdf.1
-
-+Flag threaded
-+ Description: Compile markdown2pdf with -threaded option.
-+ Default: True
- Flag highlighting
- Description: Compile in support for syntax highlighting of code blocks.
- Default: False
-@@ -204,9 +207,9 @@
- Hs-Source-Dirs: src
- Main-Is: pandoc.hs
- if impl(ghc >= 6.12)
-- Ghc-Options: -O2 -Wall -threaded -fno-warn-unused-do-bind
-+ Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind
- else
-- Ghc-Options: -O2 -Wall -threaded
-+ Ghc-Options: -O2 -Wall
- Ghc-Prof-Options: -auto-all -caf-all
- Extensions: CPP
-
-@@ -223,7 +226,10 @@
- Executable markdown2pdf
- Hs-Source-Dirs: src
- Main-Is: markdown2pdf.hs
-- Ghc-Options: -Wall -threaded
-+ if flag(threaded)
-+ Ghc-Options: -Wall -threaded
-+ else
-+ Ghc-Options: -Wall
- Ghc-Prof-Options: -auto-all
- Extensions: CPP
- if flag(wrappers)
diff --git a/debian/patches/README b/debian/patches/README
deleted file mode 100644
index 80c158437..000000000
--- a/debian/patches/README
+++ /dev/null
@@ -1,3 +0,0 @@
-0xxx: Grabbed from upstream development.
-1xxx: Possibly relevant for upstream adoption.
-2xxx: Only relevant for official Debian release.
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index d3d74104a..000000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001_threaded.patch