shithub: freetype+ttf2subf

Download patch

ref: 896630bed63d42feb246a5781fe7d90e484362a1
parent: a11650d7faf4e91d6ad9aafb1bde5207c2c25124
author: Lukas Oberhuber <@lukaso>
date: Sun Nov 21 02:58:50 EST 2021

* meson.build: Fix compatibility version on MacOS.

Fixes #1117.

git/fs: mount .git/fs: mount/attach disallowed
--- a/meson.build
+++ b/meson.build
@@ -237,6 +237,20 @@
 ft2_deps = []
 
 
+# Correct compatibility version for OS x
+#
+# OSX sets the compatibility_version (aka libtools version) differently from
+# the library name.
+#
+if host_machine.system() == 'darwin'
+  # Maintain compatibility with autotools on macOS
+  common_ldflags = [
+    '-compatibility_version', ft2_pkgconfig_version.split('.')[0],
+    '-current_version', ft2_pkgconfig_version
+  ]
+endif
+
+
 # Generate `ftoption.h` based on available dependencies.
 
 process_header_command = [python_exe,
@@ -344,6 +358,7 @@
   dependencies: ft2_deps,
   install: true,
   version: ft2_so_version,
+  link_args: common_ldflags,
 )