From 100775b79017e688c7f04698f2a4448867068bff Mon Sep 17 00:00:00 2001 From: PulkoMandy Date: Sat, 11 Feb 2017 14:15:38 +0100 Subject: [PATCH] Fix build on Linux Stub out some translation macros for host build, so the now localized package solver can be built there. --- headers/build/os/locale/Catalog.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 headers/build/os/locale/Catalog.h diff --git a/headers/build/os/locale/Catalog.h b/headers/build/os/locale/Catalog.h new file mode 100644 index 00000000000..e40cf6dff6d --- /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