From 5b92463bae2e4b90521a78784eeda8bcce593d2a Mon Sep 17 00:00:00 2001 From: Manoj Srivastava Date: Sat, 23 Jan 2016 20:37:37 -0800 Subject: New upstream version 2.6.0 Updated the VCS-Git field of the control file to use HTTPS transport Updated the copyright file to DEP-5 format. Reverted to source format 1.0 , and use dgit Signed-off-by: Manoj Srivastava --- .../0002-Finish-fixing-the-ia64-buffer-issue.patch | 81 ---------------------- 1 file changed, 81 deletions(-) delete mode 100644 debian/patches/0002-Finish-fixing-the-ia64-buffer-issue.patch (limited to 'debian/patches/0002-Finish-fixing-the-ia64-buffer-issue.patch') diff --git a/debian/patches/0002-Finish-fixing-the-ia64-buffer-issue.patch b/debian/patches/0002-Finish-fixing-the-ia64-buffer-issue.patch deleted file mode 100644 index 472a158..0000000 --- a/debian/patches/0002-Finish-fixing-the-ia64-buffer-issue.patch +++ /dev/null @@ -1,81 +0,0 @@ -From 028b2841cadc8abddfa1a8907b5b7b3ed31dbd0c Mon Sep 17 00:00:00 2001 -From: Cyril Brulebois -Date: Fri, 2 Jan 2009 06:53:39 +0100 -Subject: [PATCH 2/5] Finish fixing the ia64 buffer issue. - -Previous commits increased YY_READ_BUF_SIZE (where __ia64__ is defined) but -left YY_BUF_SIZE unchanged, so that didn't fix the problem in the end. In the -general case, the latter is twice the former. Therefore set it to the same -ratio in the ia64 case. - -Signed-off-by: Cyril Brulebois -Signed-off-by: Manoj Srivastava ---- - flex.skl | 8 ++++++++ - scan.c | 8 ++++++++ - skel.c | 8 ++++++++ - 3 files changed, 24 insertions(+) - -diff --git a/flex.skl b/flex.skl -index f878ff0..460cbf4 100644 ---- a/flex.skl -+++ b/flex.skl -@@ -447,7 +447,15 @@ m4_ifdef( [[M4_YY_NOT_IN_HEADER]], - - /* Size of default input buffer. */ - #ifndef YY_BUF_SIZE -+#ifdef __ia64__ -+/* On IA-64, the buffer size is 16k, not 8k. -+ * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. -+ * Ditto for the __ia64__ case accordingly. -+ */ -+#define YY_BUF_SIZE 32768 -+#else - #define YY_BUF_SIZE 16384 -+#endif /* __ia64__ */ - #endif - - m4_ifdef( [[M4_YY_NOT_IN_HEADER]], -diff --git a/scan.c b/scan.c -index 4bbbdcc..83bb6aa 100644 ---- a/scan.c -+++ b/scan.c -@@ -141,7 +141,15 @@ typedef unsigned int flex_uint32_t; - - /* Size of default input buffer. */ - #ifndef YY_BUF_SIZE -+#ifdef __ia64__ -+/* On IA-64, the buffer size is 16k, not 8k. -+ * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. -+ * Ditto for the __ia64__ case accordingly. -+ */ -+#define YY_BUF_SIZE 32768 -+#else - #define YY_BUF_SIZE 16384 -+#endif /* __ia64__ */ - #endif - - /* The state buf must be large enough to hold one state per character in the main buffer. -diff --git a/skel.c b/skel.c -index 6dc7644..128cdb3 100644 ---- a/skel.c -+++ b/skel.c -@@ -514,7 +514,15 @@ const char *skel[] = { - "", - "/* Size of default input buffer. */", - "#ifndef YY_BUF_SIZE", -+ "#ifdef __ia64__", -+ "/* On IA-64, the buffer size is 16k, not 8k.", -+ " * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.", -+ " * Ditto for the __ia64__ case accordingly.", -+ " */", -+ "#define YY_BUF_SIZE 32768", -+ "#else", - "#define YY_BUF_SIZE 16384", -+ "#endif /* __ia64__ */", - "#endif", - "", - "m4_ifdef( [[M4_YY_NOT_IN_HEADER]],", --- -2.0.0.rc0 - -- cgit v1.2.3