diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2020-03-22 16:37:30 +0100 |
---|---|---|
committer | GStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2020-03-26 07:09:26 +0000 |
commit | 9402ead98b90d9e41379dc9de5284d15810a4c33 (patch) | |
tree | 3e25bc4cb16c754b1e6b66e9df972463edd59ac2 /recipes/proxy-libintl.recipe | |
parent | 10d0df5a0702ab6e9c791b4968ffb1b8f722e71c (diff) |
proxy-libintl: export the same symbols as gettext
proxy-libintl exports symbols with the g_ prefix and the gettext
implementation without it. Using the same API as gettext makes it
possible to replace the dummy libintl with the gettext one
Diffstat (limited to 'recipes/proxy-libintl.recipe')
-rw-r--r-- | recipes/proxy-libintl.recipe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/proxy-libintl.recipe b/recipes/proxy-libintl.recipe index 78a8c617..7efad1ba 100644 --- a/recipes/proxy-libintl.recipe +++ b/recipes/proxy-libintl.recipe @@ -10,7 +10,8 @@ class Recipe(recipe.Recipe): url = 'https://github.com/frida/proxy-libintl/archive/%(version)s.tar.gz' tarball_checksum = '202d90855943091b11ac91863ff5884f0eaf80318a32dc8504fcfdafc65992ed' patches = [name + '/0001-libintl.h-Fix-detection-with-AM_GNU_GETTEXT.patch', - name + '/0001-meson-Use-same-library-versioning-on-macOS-as-gettex.patch',] + name + '/0001-meson-Use-same-library-versioning-on-macOS-as-gettex.patch', + name + '/0001-Rename-symbols-for-compatibility-with-gettext.patch',] files_libs = ['libintl'] files_devel = [ |