diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-07-10 19:42:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-07-10 20:48:48 +0300 |
commit | 989a7f41004d4d0d6ec0e235b0007a05091db6e5 (patch) | |
tree | 2a13842feb9ce9e07c5ea48e0e600ea021af022d /vcl | |
parent | 02a48793c078ca363e38b3846fb68ee3ebd5ce38 (diff) |
Use the ApplicationServices framework for all OS X SDK versions
Linking with CoreGraphics and CoreText works when building against the
10.8 SDK, but fails at run-time.
Change-Id: Ia7b9f383fc456638eada274f801bf757db600361
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/Library_vcl.mk | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk index 34c5ce0c6db7..6216d679161c 100644 --- a/vcl/Library_vcl.mk +++ b/vcl/Library_vcl.mk @@ -363,22 +363,9 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\ $(vcl_coretext_code) \ )) -ifeq ($(MACOSX_SDK_VERSION),1070) $(eval $(call gb_Library_use_system_darwin_frameworks,vcl,\ ApplicationServices \ )) -else -ifeq ($(MACOSX_SDK_VERSION),1060) -$(eval $(call gb_Library_use_system_darwin_frameworks,vcl,\ - ApplicationServices \ -)) -else -$(eval $(call gb_Library_use_system_darwin_frameworks,vcl,\ - CoreGraphics \ - CoreText \ -)) -endif -endif else # ATSUI |