diff options
author | Adrian Bunk <bunk@stusta.de> | 2019-05-22 13:58:47 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-27 17:06:34 +0100 |
commit | 80f115908e49f7c416c1a1114b1e476e1c47198d (patch) | |
tree | 0cf274942327d53c2e10b60bb643bba75f39d96b /meta/recipes-gnome/librsvg | |
parent | cebad35edc168d48a1ec584bd2fbfebfd443b0e2 (diff) | |
download | poky-80f115908e49f7c416c1a1114b1e476e1c47198d.tar.gz |
librsvg: Replace workaround for old host systems with upstream fix
(From OE-Core rev: c54d40f98805977d512f5dc86f1f2c84711003ac)
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/librsvg')
-rw-r--r-- | meta/recipes-gnome/librsvg/librsvg/0001-Auto-detect-Bsymbolic-fixes-configure-on-macOS.patch | 35 | ||||
-rw-r--r-- | meta/recipes-gnome/librsvg/librsvg_2.40.20.bb | 8 |
2 files changed, 38 insertions, 5 deletions
diff --git a/meta/recipes-gnome/librsvg/librsvg/0001-Auto-detect-Bsymbolic-fixes-configure-on-macOS.patch b/meta/recipes-gnome/librsvg/librsvg/0001-Auto-detect-Bsymbolic-fixes-configure-on-macOS.patch new file mode 100644 index 0000000000..954bb60880 --- /dev/null +++ b/meta/recipes-gnome/librsvg/librsvg/0001-Auto-detect-Bsymbolic-fixes-configure-on-macOS.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From b99891e31eb6ce550e7e1cb2ca592095b3050a93 Mon Sep 17 00:00:00 2001 | ||
2 | From: Brion Vibber <brion@pobox.com> | ||
3 | Date: Sun, 25 Feb 2018 18:42:36 -0800 | ||
4 | Subject: Auto-detect -Bsymbolic, fixes configure on macOS | ||
5 | |||
6 | The -Bsymbolic linker option is ELF-specific, and was breaking | ||
7 | configure on macOS unless --disable-Bsymbolic was explicitly passed. | ||
8 | |||
9 | Switching the behavior from requiring -Bsymbolic to be available | ||
10 | by default to just warning and continuing on without. | ||
11 | |||
12 | Fixes https://gitlab.gnome.org/GNOME/librsvg/issues/211 | ||
13 | |||
14 | Upstream-Status: Backport | ||
15 | Signed-off-by: Adrian Bunk <bunk@stusta.de> | ||
16 | --- | ||
17 | configure.ac | 2 +- | ||
18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
19 | |||
20 | diff --git a/configure.ac b/configure.ac | ||
21 | index 15b26b2d..9f8dce29 100644 | ||
22 | --- a/configure.ac | ||
23 | +++ b/configure.ac | ||
24 | @@ -216,7 +216,7 @@ AM_CONDITIONAL([ENABLE_PIXBUF_LOADER],[test "$enable_pixbuf_loader" = "yes"]) | ||
25 | AC_ARG_ENABLE([Bsymbolic], | ||
26 | [AS_HELP_STRING([--disable-Bsymbolic], | ||
27 | [disable linking with -Bsymbolic])], | ||
28 | - [],[enable_Bsymbolic=yes]) | ||
29 | + [enable_Bsymbolic=no],[enable_Bsymbolic=auto]) | ||
30 | |||
31 | BSYMBOLIC_LDFLAG= | ||
32 | if test "$enable_Bsymbolic" != "no"; then | ||
33 | -- | ||
34 | 2.20.1 | ||
35 | |||
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb b/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb index e376d52ef3..6a798e6a91 100644 --- a/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb +++ b/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb | |||
@@ -14,17 +14,15 @@ BBCLASSEXTEND = "native" | |||
14 | 14 | ||
15 | inherit gnomebase gtk-doc pixbufcache upstream-version-is-even gobject-introspection | 15 | inherit gnomebase gtk-doc pixbufcache upstream-version-is-even gobject-introspection |
16 | 16 | ||
17 | SRC_URI += "file://gtk-option.patch" | 17 | SRC_URI += "file://gtk-option.patch \ |
18 | file://0001-Auto-detect-Bsymbolic-fixes-configure-on-macOS.patch \ | ||
19 | " | ||
18 | 20 | ||
19 | SRC_URI[archive.md5sum] = "4949d313b0c5d9161a5c259104af5568" | 21 | SRC_URI[archive.md5sum] = "4949d313b0c5d9161a5c259104af5568" |
20 | SRC_URI[archive.sha256sum] = "cff4dd3c3b78bfe99d8fcfad3b8ba1eee3289a0823c0e118d78106be6b84c92b" | 22 | SRC_URI[archive.sha256sum] = "cff4dd3c3b78bfe99d8fcfad3b8ba1eee3289a0823c0e118d78106be6b84c92b" |
21 | 23 | ||
22 | CACHED_CONFIGUREVARS = "ac_cv_path_GDK_PIXBUF_QUERYLOADERS=${STAGING_LIBDIR_NATIVE}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders" | 24 | CACHED_CONFIGUREVARS = "ac_cv_path_GDK_PIXBUF_QUERYLOADERS=${STAGING_LIBDIR_NATIVE}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders" |
23 | 25 | ||
24 | # The older ld (2.22) on the host (Centos 6.5) doesn't have the | ||
25 | # -Bsymbolic-functions option, we can disable it for native. | ||
26 | EXTRA_OECONF_append_class-native = " --enable-Bsymbolic=auto" | ||
27 | |||
28 | PACKAGECONFIG ??= "gdkpixbuf" | 26 | PACKAGECONFIG ??= "gdkpixbuf" |
29 | # The gdk-pixbuf loader | 27 | # The gdk-pixbuf loader |
30 | PACKAGECONFIG[gdkpixbuf] = "--enable-pixbuf-loader,--disable-pixbuf-loader,gdk-pixbuf-native" | 28 | PACKAGECONFIG[gdkpixbuf] = "--enable-pixbuf-loader,--disable-pixbuf-loader,gdk-pixbuf-native" |