components/text-utilities/patches/fix-parfait.patch
author Rich Burridge <rich.burridge@oracle.com>
Wed, 04 Mar 2015 07:17:04 -0800
changeset 3903 bddba77320a5
parent 3897 cd126ba3fdda
permissions -rw-r--r--
20623439 "gmake test" failure for text-utilities version 2.25.2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
Changes to make "gmake parfait" work. In other words, instead of using
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
"-include config.h" as part of the build, replace this with the addition
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
of a:
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     6
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     7
at the beginning of all the source files that get information from this
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     8
file.
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
This patch can be removed when Parfait CR #19730835 is fixed.
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    12
These changes will not be sent upstream.
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    13
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    14
--- util-linux-2.25.2/Makefile.in.orig	2015-03-01 12:09:46.664939865 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    15
+++ util-linux-2.25.2/Makefile.in	2015-03-01 12:10:03.697835491 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    16
@@ -3330,7 +3330,6 @@
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    17
 usrlib_execdir = @usrlib_execdir@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    18
 usrsbin_execdir = @usrsbin_execdir@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    19
 AM_CPPFLAGS = \
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    20
-	-include config.h \
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    21
 	-I$(top_srcdir)/include \
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    22
 	-DLOCALEDIR=\"$(localedir)\" \
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    23
 	-D_PATH_LOCALSTATEDIR=\"${localstatedir}\"
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    24
--- util-linux-2.25.2/lib/at.c.orig	2015-03-01 11:43:47.706048138 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    25
+++ util-linux-2.25.2/lib/at.c	2015-03-01 11:53:01.995395571 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    26
@@ -6,6 +6,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    27
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    28
  * Written by Karel Zak <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    29
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    30
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    31
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    32
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    33
 #include <fcntl.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    34
--- util-linux-2.25.2/lib/blkdev.c.orig	2015-03-01 11:43:47.709782117 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    35
+++ util-linux-2.25.2/lib/blkdev.c	2015-03-01 11:53:06.056900088 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    36
@@ -4,6 +4,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    37
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    38
  * Written by Karel Zak <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    39
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    40
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    41
 #include <sys/types.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    42
 #include <sys/stat.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    43
 #include <sys/ioctl.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    44
--- util-linux-2.25.2/lib/canonicalize.c.orig	2015-03-01 11:43:47.713318152 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    45
+++ util-linux-2.25.2/lib/canonicalize.c	2015-03-01 11:53:10.025907134 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    46
@@ -6,6 +6,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    47
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    48
  * Copyright (C) 2009-2013 Karel Zak <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    49
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    50
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    51
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    52
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    53
 #include <ctype.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    54
--- util-linux-2.25.2/lib/colors.c.orig	2015-03-01 11:43:47.716885436 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    55
+++ util-linux-2.25.2/lib/colors.c	2015-03-01 11:53:14.164585667 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    56
@@ -5,6 +5,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    57
  * This file may be distributed under the terms of the
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    58
  * GNU Lesser General Public License.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    59
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    60
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    61
 #include <assert.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    62
 #include <sys/stat.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    63
 #include <sys/types.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    64
--- util-linux-2.25.2/lib/crc32.c.orig	2015-03-01 11:43:47.719450124 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    65
+++ util-linux-2.25.2/lib/crc32.c	2015-03-01 11:53:21.320244734 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    66
@@ -38,6 +38,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    67
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    68
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    69
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    70
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    71
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    72
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    73
 #include "crc32.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    74
--- util-linux-2.25.2/lib/crc64.c.orig	2015-03-01 11:43:47.721677562 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    75
+++ util-linux-2.25.2/lib/crc64.c	2015-03-01 11:53:25.846172229 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    76
@@ -1,3 +1,4 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    77
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    78
 #include "crc64.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    79
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    80
 static const uint64_t crc64_tab[256] = {
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    81
--- util-linux-2.25.2/lib/env.c.orig	2015-03-01 11:43:47.723913257 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    82
+++ util-linux-2.25.2/lib/env.c	2015-03-01 11:53:30.328287948 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    83
@@ -5,6 +5,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    84
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    85
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    86
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    87
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    88
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    89
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    90
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    91
--- util-linux-2.25.2/lib/exec_shell.c.orig	2015-03-01 11:43:47.726160917 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    92
+++ util-linux-2.25.2/lib/exec_shell.c	2015-03-01 11:53:34.945133416 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    93
@@ -16,6 +16,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    94
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    95
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    96
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    97
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    98
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
    99
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   100
 #include <unistd.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   101
--- util-linux-2.25.2/lib/fileutils.c.orig	2015-03-01 11:43:47.728419344 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   102
+++ util-linux-2.25.2/lib/fileutils.c	2015-03-01 11:53:40.478569968 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   103
@@ -2,6 +2,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   104
  * Copyright (C) 2012 Sami Kerola <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   105
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   106
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   107
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   108
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   109
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   110
 #include <sys/stat.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   111
--- util-linux-2.25.2/lib/ismounted.c.orig	2015-03-01 11:43:47.730668003 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   112
+++ util-linux-2.25.2/lib/ismounted.c	2015-03-01 11:53:45.712384297 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   113
@@ -6,6 +6,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   114
  * This file may be redistributed under the terms of the GNU Public
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   115
  * License.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   116
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   117
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   118
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   119
 #include <unistd.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   120
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   121
--- util-linux-2.25.2/lib/mangle.c.orig	2015-03-01 11:43:47.732911742 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   122
+++ util-linux-2.25.2/lib/mangle.c	2015-03-01 11:53:49.871293399 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   123
@@ -5,6 +5,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   124
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   125
  * Copyright (C) 2010 Karel Zak <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   126
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   127
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   128
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   129
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   130
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   131
--- util-linux-2.25.2/lib/match.c.orig	2015-03-01 11:43:47.735095807 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   132
+++ util-linux-2.25.2/lib/match.c	2015-03-01 11:53:56.163043602 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   133
@@ -5,6 +5,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   134
  * GNU Lesser General Public License.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   135
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   136
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   137
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   138
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   139
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   140
 #include "match.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   141
--- util-linux-2.25.2/lib/md5.c.orig	2015-03-01 11:43:47.739618639 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   142
+++ util-linux-2.25.2/lib/md5.c	2015-03-01 11:54:17.671305500 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   143
@@ -14,6 +14,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   144
  * needed on buffers full of bytes, and then call MD5Final, which
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   145
  * will fill a supplied 16-byte array with the digest.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   146
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   147
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   148
 #include <string.h>		/* for memcpy() */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   149
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   150
 #include "md5.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   151
--- util-linux-2.25.2/lib/pager.c.orig	2015-03-01 11:43:47.741853543 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   152
+++ util-linux-2.25.2/lib/pager.c	2015-03-01 11:54:23.396457844 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   153
@@ -5,6 +5,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   154
  * by Davidlohr Bueso <dave@xxxxxxx> - March 2012.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   155
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   156
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   157
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   158
 #include <unistd.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   159
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   160
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   161
--- util-linux-2.25.2/lib/path.c.orig	2015-03-01 11:43:47.744084746 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   162
+++ util-linux-2.25.2/lib/path.c	2015-03-01 11:54:28.896601001 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   163
@@ -23,6 +23,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   164
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   165
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   166
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   167
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   168
 #include <stdarg.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   169
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   170
 #include <unistd.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   171
--- util-linux-2.25.2/lib/procutils.c.orig	2015-03-01 11:43:47.746347088 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   172
+++ util-linux-2.25.2/lib/procutils.c	2015-03-01 11:54:33.422225278 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   173
@@ -14,6 +14,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   174
  * GNU Library Public License for more details.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   175
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   176
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   177
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   178
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   179
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   180
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   181
--- util-linux-2.25.2/lib/randutils.c.orig	2015-03-01 11:43:47.748566538 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   182
+++ util-linux-2.25.2/lib/randutils.c	2015-03-01 11:54:37.272489749 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   183
@@ -6,6 +6,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   184
  * This file may be redistributed under the terms of the
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   185
  * GNU Lesser General Public License.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   186
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   187
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   188
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   189
 #include <unistd.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   190
 #include <fcntl.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   191
--- util-linux-2.25.2/lib/readutmp.c.orig	2015-03-01 11:43:47.750742501 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   192
+++ util-linux-2.25.2/lib/readutmp.c	2015-03-01 11:54:41.797679368 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   193
@@ -18,6 +18,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   194
 /* Written by jla; revised by djm */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   195
 /* extracted for util-linux by ooprala */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   196
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   197
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   198
 #include <errno.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   199
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   200
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   201
--- util-linux-2.25.2/lib/setproctitle.c.orig	2015-03-01 11:43:47.752974942 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   202
+++ util-linux-2.25.2/lib/setproctitle.c	2015-03-01 11:54:46.497856864 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   203
@@ -3,6 +3,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   204
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   205
  *  Clobbers argv of our main procedure so ps(1) will display the title.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   206
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   207
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   208
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   209
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   210
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   211
--- util-linux-2.25.2/lib/strutils.c.orig	2015-03-01 11:43:47.755217223 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   212
+++ util-linux-2.25.2/lib/strutils.c	2015-03-01 11:54:50.265252752 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   213
@@ -3,6 +3,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   214
  * Copyright (C) 2010 Davidlohr Bueso <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   215
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   216
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   217
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   218
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   219
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   220
 #include <inttypes.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   221
--- util-linux-2.25.2/lib/sysfs.c.orig	2015-03-01 11:43:47.757446028 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   222
+++ util-linux-2.25.2/lib/sysfs.c	2015-03-01 11:54:54.370697652 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   223
@@ -4,6 +4,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   224
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   225
  * Written by Karel Zak <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   226
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   227
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   228
 #include <ctype.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   229
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   230
 #include "c.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   231
--- util-linux-2.25.2/lib/timeutils.c.orig	2015-03-01 11:43:47.759733018 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   232
+++ util-linux-2.25.2/lib/timeutils.c	2015-03-01 11:54:59.904346610 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   233
@@ -18,6 +18,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   234
   along with util-linux; If not, see <http://www.gnu.org/licenses/>.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   235
 ***/
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   236
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   237
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   238
 #include <assert.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   239
 #include <ctype.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   240
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   241
--- util-linux-2.25.2/lib/ttyutils.c.orig	2015-03-01 11:43:47.761938016 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   242
+++ util-linux-2.25.2/lib/ttyutils.c	2015-03-01 11:55:04.046327843 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   243
@@ -4,6 +4,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   244
  *
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   245
  * Written by Karel Zak <[email protected]>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   246
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   247
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   248
 #include <ctype.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   249
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   250
 #include "c.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   251
--- util-linux-2.25.2/lib/xgetpass.c.orig	2015-03-01 11:43:47.766478464 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   252
+++ util-linux-2.25.2/lib/xgetpass.c	2015-03-01 11:55:08.021688395 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   253
@@ -5,6 +5,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   254
  * Public domain.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   255
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   256
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   257
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   258
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   259
 #include <string.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   260
 #include <stdlib.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   261
--- util-linux-2.25.2/text-utils/colcrt.c.orig	2015-03-01 11:32:01.483661600 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   262
+++ util-linux-2.25.2/text-utils/colcrt.c	2015-03-01 11:32:22.335979347 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   263
@@ -38,6 +38,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   264
  * 	modified to work correctly in multi-byte locales
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   265
  */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   266
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   267
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   268
 #include <stdio.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   269
 #include <stdlib.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   270
 #include <unistd.h>		/* for close() */
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   271
--- util-linux-2.25.2/text-utils/colrm.c.orig	2015-03-01 11:32:01.486062543 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   272
+++ util-linux-2.25.2/text-utils/colrm.c	2015-03-01 11:32:29.519982931 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   273
@@ -38,6 +38,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   274
  * 	modified to work correctly in multi-byte locales
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   275
  */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   276
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   277
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   278
 #include <stdio.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   279
 #include <stdlib.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   280
 #include <getopt.h>
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   281
--- util-linux-2.25.2/text-utils/column.c.orig	2015-03-01 11:32:01.488393625 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   282
+++ util-linux-2.25.2/text-utils/column.c	2015-03-01 11:32:36.896574783 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   283
@@ -38,6 +38,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   284
  * 	modified to work correctly in multi-byte locales
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   285
  */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   286
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   287
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   288
 #include <sys/types.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   289
 #include <sys/ioctl.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   290
 
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   291
--- util-linux-2.25.2/text-utils/hexdump-conv.c.orig	2015-03-01 11:32:01.490687692 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   292
+++ util-linux-2.25.2/text-utils/hexdump-conv.c	2015-03-01 11:32:42.821621161 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   293
@@ -31,6 +31,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   294
  * SUCH DAMAGE.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   295
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   296
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   297
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   298
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   299
 #include <ctype.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   300
 #include <sys/types.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   301
--- util-linux-2.25.2/text-utils/hexdump-display.c.orig	2015-03-01 11:32:01.492920078 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   302
+++ util-linux-2.25.2/text-utils/hexdump-display.c	2015-03-01 11:32:49.738529478 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   303
@@ -31,6 +31,7 @@
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   304
  * SUCH DAMAGE.
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   305
  */
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   306
 
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   307
+#include "config.h"
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   308
 #include <sys/param.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   309
 #include <sys/stat.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   310
 #include <sys/types.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   311
--- util-linux-2.25.2/text-utils/hexdump-parse.c.orig	2015-03-01 11:32:01.495159360 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   312
+++ util-linux-2.25.2/text-utils/hexdump-parse.c	2015-03-01 11:33:00.346711491 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   313
@@ -35,6 +35,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   314
   * - added Native Language Support
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   315
   */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   316
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   317
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   318
 #include <sys/types.h>
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   319
 #include <sys/file.h>
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   320
 #include <stdio.h>
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   321
--- util-linux-2.25.2/text-utils/hexdump.c.orig	2015-03-01 11:32:01.497386272 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   322
+++ util-linux-2.25.2/text-utils/hexdump.c	2015-03-01 11:33:05.155584413 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   323
@@ -35,6 +35,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   324
   * - added Native Language Support
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   325
   */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   326
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   327
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   328
 #include <sys/types.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   329
 #include <unistd.h>
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   330
 #include <stdio.h>
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   331
--- util-linux-2.25.2/text-utils/rev.c.orig	2015-03-01 11:32:01.499685509 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   332
+++ util-linux-2.25.2/text-utils/rev.c	2015-03-01 11:33:11.255726569 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   333
@@ -48,6 +48,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   334
  *      Changed tab indentation to 8 chars for better reading the code
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   335
  */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   336
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   337
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   338
 #include <stdarg.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   339
 #include <sys/types.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   340
 #include <errno.h>
3897
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   341
--- util-linux-2.25.2/text-utils/tailf.c.orig	2015-03-01 11:32:01.504078280 -0800
cd126ba3fdda 20623340 text-utilities should be updated to version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 2132
diff changeset
   342
+++ util-linux-2.25.2/text-utils/tailf.c	2015-03-01 11:33:16.805390486 -0800
2132
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   343
@@ -26,6 +26,7 @@
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   344
  * flushed back to disk.  This is sort of a "stealth" tail.
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   345
  */
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   346
 
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   347
+#include "config.h"
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   348
 #include <stdio.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   349
 #include <stdlib.h>
c8f040246f83 19731950 Work around Parfait CR #19730835
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
   350
 #include <unistd.h>
3903
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   351
--- util-linux-2.25.2/tests/helpers/test_sysinfo.c.orig	2015-03-03 12:21:29.976946287 -0800
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   352
+++ util-linux-2.25.2/tests/helpers/test_sysinfo.c	2015-03-03 12:21:51.482944375 -0800
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   353
@@ -14,6 +14,7 @@
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   354
  * GNU General Public License for more details.
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   355
  */
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   356
 
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   357
+#include "config.h"
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   358
 #include <stdio.h>
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   359
 #include <stdlib.h>
bddba77320a5 20623439 "gmake test" failure for text-utilities version 2.25.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3897
diff changeset
   360
 #include <string.h>