blob: 0f7c5fdf72872cc98cd1a9d0acaae2a232a9d152 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 809c79b7d554a4ec83921df9d8773c99a03dc81c Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 20 Apr 2016 21:11:00 -0700
Brad Bishop19323692019-04-05 15:28:33 -04004Subject: [PATCH 23/30] Define DUMMY_LOCALE_T if not defined
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6This is a hack to fix building the locale bits on an older
7CentOs 5.X machine
8
9Upstream-Status: Inappropriate [other]
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 locale/programs/config.h | 3 +++
14 1 file changed, 3 insertions(+)
15
16diff --git a/locale/programs/config.h b/locale/programs/config.h
Brad Bishop19323692019-04-05 15:28:33 -040017index a1e6e0ec3c..7f75528eae 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018--- a/locale/programs/config.h
19+++ b/locale/programs/config.h
20@@ -19,6 +19,9 @@
21 #ifndef _LD_CONFIG_H
22 #define _LD_CONFIG_H 1
23
24+#ifndef DUMMY_LOCALE_T
25+#define DUMMY_LOCALE_T
26+#endif
27 /* Use the internal textdomain used for libc messages. */
28 #define PACKAGE _libc_intl_domainname
29 #ifndef VERSION
Brad Bishop19323692019-04-05 15:28:33 -040030--
312.20.1
32