[haiku-commits] haiku: hrev50950 - headers/build/os/locale

  • From: pulkomandy@xxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 11 Feb 2017 14:16:31 +0100 (CET)

hrev50950 adds 1 changeset to branch 'master'
old head: cf0ba058ecc5ac7ad3be99f99219d18c051e9a43
new head: 100775b79017e688c7f04698f2a4448867068bff
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=100775b79017+%5Ecf0ba058ecc5

----------------------------------------------------------------------------

100775b79017: Fix build on Linux
  
  Stub out some translation macros for host build, so the now localized
  package solver can be built there.

                                   [ PulkoMandy <pulkomandy@xxxxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev50950
Commit:      100775b79017e688c7f04698f2a4448867068bff
URL:         http://cgit.haiku-os.org/haiku/commit/?id=100775b79017
Author:      PulkoMandy <pulkomandy@xxxxxxxxxxxxx>
Date:        Sat Feb 11 13:15:38 2017 UTC

----------------------------------------------------------------------------

1 file changed, 13 insertions(+)
headers/build/os/locale/Catalog.h | 13 +++++++++++++

----------------------------------------------------------------------------

diff --git a/headers/build/os/locale/Catalog.h 
b/headers/build/os/locale/Catalog.h
new file mode 100644
index 0000000..e40cf6d
--- /dev/null
+++ b/headers/build/os/locale/Catalog.h
@@ -0,0 +1,13 @@
+/*
+ * Copyright 2017, Haiku, Inc.
+ * Distributed under the terms of the MIT License.
+ */
+#ifndef _CATALOG_H_
+#define _CATALOG_H_
+
+#ifndef B_AVOID_TRANSLATION_MACROS
+#define B_TRANSLATE_MARK(x) x
+#define B_TRANSLATE_NOCOLLECT(x) x
+#endif
+
+#endif


Other related posts:

  • » [haiku-commits] haiku: hrev50950 - headers/build/os/locale - pulkomandy