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
|
--- sw/Module_sw.mk.orig 2017-05-03 16:46:29 UTC
+++ sw/Module_sw.mk
@@ -55,23 +55,28 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
CppunitTest_sw_ooxmlexport \
CppunitTest_sw_ooxmlexport2 \
CppunitTest_sw_ooxmlexport3 \
- CppunitTest_sw_ooxmlexport4 \
+ $(if $(filter FREEBSD,$(OS)),, \
+ CppunitTest_sw_ooxmlexport4) \
CppunitTest_sw_ooxmlexport5 \
CppunitTest_sw_ooxmlexport6 \
- CppunitTest_sw_ooxmlexport7 \
+ $(if $(filter FREEBSD,$(OS)),, \
+ CppunitTest_sw_ooxmlexport7) \
CppunitTest_sw_ooxmlexport8 \
CppunitTest_sw_ooxmlexport9 \
CppunitTest_sw_ooxmlfieldexport \
CppunitTest_sw_ooxmlw14export \
CppunitTest_sw_ooxmlimport \
- CppunitTest_sw_ww8export \
+ $(if $(filter FREEBSD,$(OS)),, \
+ CppunitTest_sw_ww8export) \
CppunitTest_sw_ww8export2 \
- CppunitTest_sw_ww8import \
+ $(if $(filter FREEBSD,$(OS)),, \
+ CppunitTest_sw_ww8import) \
CppunitTest_sw_rtfexport \
CppunitTest_sw_rtfimport \
CppunitTest_sw_odfexport \
CppunitTest_sw_odfimport \
- CppunitTest_sw_uiwriter \
+ $(if $(filter FREEBSD,$(OS)),, \
+ CppunitTest_sw_uiwriter) \
CppunitTest_sw_mailmerge \
CppunitTest_sw_globalfilter \
))
|