Dash:
[t2.git] / package / filesystem / e2fsprogs / compile.patch.dietlibc
blobd899b84eb2f8e22c6c1a4381885b2d4824762596
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../e2fsprogs/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 --- ./lib/ss/pager.c.orig       2006-06-21 15:44:59.000000000 +0200
18 +++ ./lib/ss/pager.c    2006-06-21 15:45:54.000000000 +0200
19 @@ -36,6 +36,9 @@
20  #if (!defined(HAVE_PRCTL) && defined(linux))
21  #include <sys/syscall.h>
22  #endif
23 +#ifndef PR_GET_DUMPABLE
24 +#define PR_GET_DUMPABLE 3
25 +#endif
27  static char MORE[] = "more";
28  extern char *_ss_pager_name;
29 --- ./lib/ext2fs/test_io.c.orig 2006-06-21 15:51:20.000000000 +0200
30 +++ ./lib/ext2fs/test_io.c      2006-06-21 15:51:47.000000000 +0200
31 @@ -34,6 +34,10 @@
32  #include "ext2_fs.h"
33  #include "ext2fs.h"
35 +#ifndef PR_GET_DUMPABLE
36 +#define PR_GET_DUMPABLE 3
37 +#endif
39  /*
40   * For checking structure magic numbers...
41   */
42 --- ./lib/blkid/cache.c.orig    2006-06-21 15:57:47.000000000 +0200
43 +++ ./lib/blkid/cache.c 2006-06-21 15:58:16.000000000 +0200
44 @@ -28,6 +28,10 @@
45  #endif
46  #include "blkidP.h"
48 +#ifndef PR_GET_DUMPABLE
49 +#define PR_GET_DUMPABLE 3
50 +#endif
52  int blkid_debug_mask = 0;
55 --- ./misc/util.c.orig  2006-07-08 00:58:39.000000000 +0000
56 +++ ./misc/util.c       2006-07-08 00:59:42.000000000 +0000
57 @@ -79,7 +79,7 @@
58  void check_plausibility(const char *device)
59  {
60         int val;
61 -#ifdef HAVE_OPEN64
62 +#ifndef __NO_STAT64
63         struct stat64 s;
64         
65         val = stat64(device, &s);