forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aspell-0.60.6.1-clang.patch
47 lines (38 loc) · 1.26 KB
/
aspell-0.60.6.1-clang.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
From https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=180565
--- a/interfaces/cc/aspell.h
+++ b/interfaces/cc/aspell.h
@@ -237,6 +237,7 @@
/******************************** errors ********************************/
+#ifndef ASPELL_ERRORS__HPP
extern const struct AspellErrorInfo * const aerror_other;
extern const struct AspellErrorInfo * const aerror_operation_not_supported;
extern const struct AspellErrorInfo * const aerror_cant_copy;
@@ -322,6 +323,7 @@
extern const struct AspellErrorInfo * const aerror_bad_magic;
extern const struct AspellErrorInfo * const aerror_expression;
extern const struct AspellErrorInfo * const aerror_invalid_expression;
+#endif
/******************************* speller *******************************/
--- a/prog/aspell.cpp
+++ b/prog/aspell.cpp
@@ -25,6 +25,7 @@
# include <langinfo.h>
#endif
+#include "errors.hpp"
#include "aspell.h"
#ifdef USE_FILE_INO
@@ -40,7 +41,6 @@
#include "convert.hpp"
#include "document_checker.hpp"
#include "enumeration.hpp"
-#include "errors.hpp"
#include "file_util.hpp"
#include "fstream.hpp"
#include "info.hpp"
--- a/prog/checker_string.hpp
+++ b/prog/checker_string.hpp
@@ -6,6 +6,7 @@
#include <stdio.h>
+#include "errors.hpp"
#include "aspell.h"
#include "vector.hpp"