blob: 55ab5a7fca2ca5a4ba991a79ac1eb622ddb8e535 [file] [log] [blame]
Brad Bishop0f291cc2019-09-01 15:16:57 -04001From 95425206e7317e59b7ca06d7f838ad357cdd200c Mon Sep 17 00:00:00 2001
2From: Piotr Tworek <tworaz@tworaz.net>
3Date: Wed, 14 Aug 2019 00:31:54 +0200
4Subject: [PATCH 5/7] Use LC_MESSAGES for address localization when LC_ADDRESS
5 is not available.
6
7Musl does not define LC_ADDRESS unfortunately.
8
9Upstream-Status: Inappropriate [musl specific]
10
11Signed-off-by: Piotr Tworek <tworaz@tworaz.net>
12---
13 src/addressbook/libebook-contacts/e-phone-number-private.cpp | 4 ++++
14 1 file changed, 4 insertions(+)
15
16diff --git a/src/addressbook/libebook-contacts/e-phone-number-private.cpp b/src/addressbook/libebook-contacts/e-phone-number-private.cpp
17index 4c5aebb..9abcebd 100644
18--- a/src/addressbook/libebook-contacts/e-phone-number-private.cpp
19+++ b/src/addressbook/libebook-contacts/e-phone-number-private.cpp
20@@ -36,6 +36,10 @@
21 #include <phonenumbers/logger.h>
22 #include <phonenumbers/phonenumberutil.h>
23
24+#ifndef LC_ADDRESS
25+#define LC_ADDRESS LC_MESSAGES
26+#endif
27+
28 using i18n::phonenumbers::PhoneNumber;
29 using i18n::phonenumbers::PhoneNumberUtil;
30
31--
322.21.0
33