diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/readline/readline-8.0/rl-native.map | 12 | ||||
-rw-r--r-- | meta/recipes-core/readline/readline.inc | 5 |
2 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-core/readline/readline-8.0/rl-native.map b/meta/recipes-core/readline/readline-8.0/rl-native.map new file mode 100644 index 0000000000..5e7d49cdd2 --- /dev/null +++ b/meta/recipes-core/readline/readline-8.0/rl-native.map | |||
@@ -0,0 +1,12 @@ | |||
1 | READLINE_6.3 { | ||
2 | rl_change_environment; | ||
3 | rl_clear_history; | ||
4 | rl_executing_key; | ||
5 | rl_executing_keyseq; | ||
6 | rl_filename_stat_hook; | ||
7 | rl_history_substr_search_backward; | ||
8 | rl_history_substr_search_forward; | ||
9 | rl_input_available_hook; | ||
10 | rl_print_last_kbd_macro; | ||
11 | rl_signal_event_hook; | ||
12 | }; | ||
diff --git a/meta/recipes-core/readline/readline.inc b/meta/recipes-core/readline/readline.inc index e9665228dc..07f54a76f1 100644 --- a/meta/recipes-core/readline/readline.inc +++ b/meta/recipes-core/readline/readline.inc | |||
@@ -43,3 +43,8 @@ do_install_append () { | |||
43 | BBCLASSEXTEND = "native nativesdk" | 43 | BBCLASSEXTEND = "native nativesdk" |
44 | 44 | ||
45 | CONFFILES_${PN} += "${sysconfdir}/inputrc" | 45 | CONFFILES_${PN} += "${sysconfdir}/inputrc" |
46 | |||
47 | # OpenSuse injects versions into libreadline leading to conficits between our native one and theirs | ||
48 | # see their spec file for where this is injected. Extra versioning is harmless so we just do the same. | ||
49 | SRC_URI_append_class-native = " file://rl-native.map" | ||
50 | LDFLAGS_append_class-native = " -Wl,--version-script=${WORKDIR}/rl-native.map" \ No newline at end of file | ||