Dash:
[t2-trunk.git] / package / base / man / compile.patch.dietlibc
blobcbb38ac392cbbc6a5bdb499509ad18637f33c0bb
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../man/compile.patch.dietlibc
5 # Copyright (C) 2006 - 2016 The T2 SDE Project
6
7 # More information can be found in the files COPYING and README.
8
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 # --- T2-COPYRIGHT-NOTE-END ---
17 --- ./src/man.c.orig    2006-06-19 00:21:55.000000000 +0200
18 +++ ./src/man.c 2006-06-19 00:24:43.000000000 +0200
19 @@ -30,6 +30,9 @@
20  #include <errno.h>
21  #include <unistd.h>
22  #include <locale.h>
23 +#include <termio.h>
24 +#define index strchr
25 +#define rindex strrchr
27  #ifndef R_OK
28  #define R_OK 4
29 --- ./src/man-config.c.orig     2006-06-19 00:26:33.000000000 +0200
30 +++ ./src/man-config.c  2006-06-19 00:27:06.000000000 +0200
31 @@ -32,6 +32,7 @@
32  #include "paths.h"
33  #include "gripes.h"
34  #include "util.h"
35 +#define rindex strrchr
37  #define BUFSIZE 4096
39 --- ./src/to_cat.c.orig 2006-06-19 00:29:10.000000000 +0200
40 +++ ./src/to_cat.c      2006-06-19 00:29:22.000000000 +0200
41 @@ -1,6 +1,7 @@
42  #include <stdio.h>
43  #include <stdlib.h>
44  #include <string.h>
45 +#define rindex strrchr
47  extern char *rindex (const char *, int);       /* not always in <string.h> */
49 --- ./src/manpath.c.orig        2006-06-19 00:29:57.000000000 +0200
50 +++ ./src/manpath.c     2006-06-19 00:30:16.000000000 +0200
51 @@ -26,6 +26,8 @@
52  #include <unistd.h>
53  #include <sys/types.h>
54  #include <sys/stat.h>
55 +#define index strchr
56 +#define rindex strrchr
58  /* not always in <string.h> */
59  extern char *index(const char *, int);