diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-09-28 00:18:12 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-09-28 16:49:07 +0200 |
commit | cee32aae398283c38b42c73add694e9d074a5d62 (patch) | |
tree | 6b24d1825a8ecab75c160db1734f7660c8759621 /lingucomponent | |
parent | b05430409b3eb3a4b8649895788e025fc9a0d9a0 (diff) |
gbuild: clean up Mac OS X framework handling:
There are currently 3 different mechanisms being used for frameworks,
which is of course intolerable so we invent a 4th one and standardize on
it: gb_LinkTarget_use_darwin_frameworks
(This doesn't mean using add_libs or externals was wrong, it was just
inconsistent... and i don't see an obvious benefit of using externals here)
Change-Id: I5de9020402c87e7236c6a358c47f02fa56642d3d
Diffstat (limited to 'lingucomponent')
-rw-r--r-- | lingucomponent/Library_MacOSXSpell.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lingucomponent/Library_MacOSXSpell.mk b/lingucomponent/Library_MacOSXSpell.mk index 57d5a65568d1..b2bcd1952396 100644 --- a/lingucomponent/Library_MacOSXSpell.mk +++ b/lingucomponent/Library_MacOSXSpell.mk @@ -49,8 +49,11 @@ $(eval $(call gb_Library_use_libraries,MacOSXSpell,\ $(eval $(call gb_Library_add_standard_system_libs,MacOSXSpell)) +$(eval $(call gb_Library_use_system_darwin_frameworks,MacOSXSpell,\ + Cocoa \ +)) + $(eval $(call gb_Library_use_externals,MacOSXSpell,\ - cocoa \ hunspell \ )) |