summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2007-02-13 13:48:12 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2007-02-13 13:48:12 +0000
commit63a8706144442ef2c7a0e0b2b42dda6a5d9ec7ec (patch)
treea7ce1a51ddf071a725ac679d227e9f13580f256c /debian/patches
parent7f076db2a924377e9de3f9a6d838b8c44ed2e16d (diff)
New upstream release.
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/00list2
-rwxr-xr-xdebian/patches/next-ia64.dpatch23
-rwxr-xr-xdebian/patches/system.dpatch19
3 files changed, 0 insertions, 44 deletions
diff --git a/debian/patches/00list b/debian/patches/00list
index aa31c567..8c069e14 100644
--- a/debian/patches/00list
+++ b/debian/patches/00list
@@ -1,6 +1,4 @@
coqdoc_stdlib
browser
makefile
-system
no-complexity-test
-next-ia64
diff --git a/debian/patches/next-ia64.dpatch b/debian/patches/next-ia64.dpatch
deleted file mode 100755
index e9f7635f..00000000
--- a/debian/patches/next-ia64.dpatch
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## next-ia64.dpatch by Samuel Mimram <smimram@debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Disable not-really-needed ia64 cast which broke with gcc 4.0.
-
-@DPATCH@
-diff -urNad coq-8.1~gamma~/kernel/byterun/coq_interp.c coq-8.1~gamma/kernel/byterun/coq_interp.c
---- coq-8.1~gamma~/kernel/byterun/coq_interp.c 2006-10-27 13:29:22.000000000 +0000
-+++ coq-8.1~gamma/kernel/byterun/coq_interp.c 2006-11-26 18:37:23.000000000 +0000
-@@ -44,11 +44,7 @@
- # ifdef DEBUG
- # define Next goto next_instr
- # else
--# ifdef __ia64__
--# define Next goto *(void *)(coq_jumptbl_base + *((uint32 *) pc)++)
--# else
--# define Next goto *(void *)(coq_jumptbl_base + *pc++)
--# endif
-+# define Next goto *(void *)(coq_jumptbl_base + *pc++)
- # endif
- #else
- # define Instruct(name) case name:
diff --git a/debian/patches/system.dpatch b/debian/patches/system.dpatch
deleted file mode 100755
index ab8bded8..00000000
--- a/debian/patches/system.dpatch
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## system.dpatch by Hugo Herbelin <hugo.herbelin@inria.fr>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Fix interpretation of ~.
-
-@DPATCH@
-diff -urNad coq-8.1~gamma~/lib/system.ml coq-8.1~gamma/lib/system.ml
---- coq-8.1~gamma~/lib/system.ml 2006-05-30 16:37:04.000000000 +0000
-+++ coq-8.1~gamma/lib/system.ml 2006-11-21 21:12:08.000000000 +0000
-@@ -43,7 +43,7 @@
- let v = safe_getenv (String.sub s (i+1) (n-i-1)) in
- let s = (String.sub s 0 i)^v^(String.sub s n (l-n)) in
- expand_macros s (i + String.length v)
-- | '~' ->
-+ | '~' when i = 0 ->
- let n = expand_atom s (i+1) in
- let v =
- if n=i+1 then home