diff options
author | jan Iversen <jani@libreoffice.org> | 2017-11-18 13:16:31 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2017-11-18 16:12:05 +0100 |
commit | 0ee2bd1aeb86048f54b607d1453bd6f2685eb8a8 (patch) | |
tree | beea5c0dda3bac80175e5f2e5d95206d619b3b5a /sccomp | |
parent | 0aed91c60fecdf12840246b0f156e51e881f6cb2 (diff) |
iOS, swarmsolver workaround
Due to license problems (see mail dev list) disabled swarmsolver
Change-Id: I39889ddab2563a857c3bf0982244f889a402097f
Diffstat (limited to 'sccomp')
-rw-r--r-- | sccomp/Library_solver.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sccomp/Library_solver.mk b/sccomp/Library_solver.mk index e23ecac7a5bb..178eb35bee07 100644 --- a/sccomp/Library_solver.mk +++ b/sccomp/Library_solver.mk @@ -22,7 +22,9 @@ $(eval $(call gb_Library_Library,solver)) $(if $(ENABLE_COINMP),$(eval $(call gb_Library_set_componentfile,solver,sccomp/source/solver/coinmpsolver))) $(if $(ENABLE_LPSOLVE),$(eval $(call gb_Library_set_componentfile,solver,sccomp/source/solver/lpsolvesolver))) +ifneq ($(OS),IOS) $(eval $(call gb_Library_set_componentfile,solver,sccomp/source/solver/swarmsolver)) +endif $(eval $(call gb_Library_use_sdk_api,solver)) @@ -47,7 +49,8 @@ $(eval $(call gb_Library_use_externals,solver,\ )) $(eval $(call gb_Library_add_exception_objects,solver,\ - sccomp/source/solver/SwarmSolver \ + $(if $(filter-out $(OS),IOS), \ + sccomp/source/solver/SwarmSolver) \ sccomp/source/solver/SolverComponent \ $(if $(ENABLE_COINMP), sccomp/source/solver/CoinMPSolver) \ $(if $(ENABLE_LPSOLVE), sccomp/source/solver/LpsolveSolver) \ |