summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/eglibc/eglibc-2.16/remove_hsep_and_vsep_from_info_pages.patch71
-rw-r--r--meta/recipes-core/eglibc/eglibc_2.16.bb1
2 files changed, 72 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-2.16/remove_hsep_and_vsep_from_info_pages.patch b/meta/recipes-core/eglibc/eglibc-2.16/remove_hsep_and_vsep_from_info_pages.patch
new file mode 100644
index 0000000000..3a9abe1163
--- /dev/null
+++ b/meta/recipes-core/eglibc/eglibc-2.16/remove_hsep_and_vsep_from_info_pages.patch
@@ -0,0 +1,71 @@
1From libc-alpha-return-35113-listarch-libc-alpha=sources dot redhat dot com at sourceware dot org Mon Dec 03 09:38:08 2012
2Return-Path: <libc-alpha-return-35113-listarch-libc-alpha=sources dot redhat dot com at sourceware dot org>
3Delivered-To: listarch-libc-alpha at sources dot redhat dot com
4Received: (qmail 4372 invoked by alias); 3 Dec 2012 09:38:05 -0000
5Received: (qmail 3968 invoked by uid 22791); 3 Dec 2012 09:38:03 -0000
6X-SWARE-Spam-Status: No, hits=-2.1 required=5.0
7 tests=AWL,BAYES_00,RP_MATCHES_RCVD
8X-Spam-Check-By: sourceware.org
9From: Allan McRae <allan at archlinux dot org>
10To: libc-alpha at sourceware dot org
11Subject: [PATCH] Remove @hsep and @vsep usage from info pages
12Date: Mon, 3 Dec 2012 19:37:44 +1000
13Message-Id: <1354527464-15109-1-git-send-email-allan@archlinux.org>
14Mailing-List: contact libc-alpha-help at sourceware dot org; run by ezmlm
15Precedence: bulk
16List-Id: <libc-alpha.sourceware.org>
17List-Subscribe: <mailto:libc-alpha-subscribe at sourceware dot org>
18List-Archive: <http://sourceware.org/ml/libc-alpha/>
19List-Post: <mailto:libc-alpha at sourceware dot org>
20List-Help: <mailto:libc-alpha-help at sourceware dot org>, <http://sourceware dot org/ml/#faqs>
21Sender: libc-alpha-owner at sourceware dot org
22Delivered-To: mailing list libc-alpha at sourceware dot org
23
242012-12-03 Allan McRae <allan@archlinux.org>
25
26 * manual/stdio.texi (Predefined Printf Handlers): Remove
27 @hsep and @vsep usage.
28
29Upstream-Status: Backport
30---
31
32As far as I can tell, @hsep and @vsep have not been supported in texinfo for
33a long time, although it attempted to add the requested separators resulting
34in ugliness:
35
36 +------+--------------+--------+--------+---------------+
37 |low|Multiplier|From|Upper|Multiplier|
38 |' '|1||' '|1|
39 |k|2^10 (1024)|kilo|K|10^3 (1000)|
40
41Go to "info libc" then
42IO on streams -> Customizing Printf -> Predefined Printf Handlers
43to see this section.
44
45With texinfo 4.13.91, this becomes an error:
46
47./stdio.texi:3140: Unknown command `hsep'
48./stdio.texi:3140: Unknown command `vsep'
49
50There is also 215 lines of warnings to be fixed at a later date...
51
52
53 manual/stdio.texi | 2 +-
54 1 file changed, 1 insertion(+), 1 deletion(-)
55
56diff --git a/manual/stdio.texi b/manual/stdio.texi
57index be769a5..7b436f0 100644
58--- a/manual/stdio.texi
59+++ b/manual/stdio.texi
60@@ -3137,7 +3137,7 @@ The postfix tag corresponds to bytes, kilobytes, megabytes, gigabytes,
61 etc. The full table is:
62
63 @ifinfo
64-@multitable @hsep @vsep {' '} {2^10 (1024)} {zetta} {Upper} {10^24 (1000)}
65+@multitable {' '} {2^10 (1024)} {zetta} {Upper} {10^24 (1000)}
66 @item low @tab Multiplier @tab From @tab Upper @tab Multiplier
67 @item ' ' @tab 1 @tab @tab ' ' @tab 1
68 @item k @tab 2^10 (1024) @tab kilo @tab K @tab 10^3 (1000)
69--
701.8.0.1
71
diff --git a/meta/recipes-core/eglibc/eglibc_2.16.bb b/meta/recipes-core/eglibc/eglibc_2.16.bb
index 78bf9bedaf..4db1ea569e 100644
--- a/meta/recipes-core/eglibc/eglibc_2.16.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.16.bb
@@ -32,6 +32,7 @@ SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};protocol=h
32 file://0001-Add-name_to_handle_at-open_by_handle-etc.-to-PowerPC.patch \ 32 file://0001-Add-name_to_handle_at-open_by_handle-etc.-to-PowerPC.patch \
33 file://fsl-ppc-no-fsqrt.patch \ 33 file://fsl-ppc-no-fsqrt.patch \
34 file://0001-R_ARM_TLS_DTPOFF32.patch \ 34 file://0001-R_ARM_TLS_DTPOFF32.patch \
35 file://remove_hsep_and_vsep_from_info_pages.patch \
35 " 36 "
36LIC_FILES_CHKSUM = "file://LICENSES;md5=98a1128c4b58120182cbea3b1752d8b9 \ 37LIC_FILES_CHKSUM = "file://LICENSES;md5=98a1128c4b58120182cbea3b1752d8b9 \
37 file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \ 38 file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \