diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-07-24 16:00:24 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-07-24 16:00:46 -0500 |
commit | ae70a17a6f19099dc7bc872d5838bad4391b0127 (patch) | |
tree | e0ac8ee26c00c9f2200ef9e86191b6757467b6db /RepositoryExternal.mk | |
parent | d5ac53d4d47313dc37691839fe76fcc9858fea9f (diff) |
pixman-1 appears to be a static lib on MacOS when using internal one
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r-- | RepositoryExternal.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index bc44b8987922..cc6c36e163b6 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -244,10 +244,16 @@ $(call gb_LinkTarget_add_linked_libs,$(1),\ cairo \ ) ifneq ($(OS),WNT) +ifeq ($(OS),MACOSX) +$(call gb_LinkTarget_add_static_libs,$(1),\ + pixman-1 \ +) +else $(call gb_LinkTarget_add_linked_libs,$(1),\ pixman-1 \ ) endif +endif endef endif # SYSTEM_CAIRO |