summaryrefslogtreecommitdiffstats
path: root/recipes-core/readline/readline-5.2/readline.pc.in
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2022-04-12 08:38:08 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-12 15:54:31 +0100
commit0c1bb43df39a9cd0256d742c8de47b53b0db2bfc (patch)
tree29e87462ab86b649ee4183eb3fa311f3c7f13210 /recipes-core/readline/readline-5.2/readline.pc.in
parentd2f8b5cdb285b72a4ed93450f6703ca27aa42e8a (diff)
downloadmeta-gplv2-master-next.tar.gz
readline: add config file for pkgconfigmaster-next
After bind upgrade to 9.18.x, the below change introduced [1], all supported libraries have accompanying .pc files now. ba2376b9e0 Update and cleanup the readline library support Otherwise, there comes below error during do_configure. $ bitbake bind | configure: error: Package requirements (readline) were not met: | | No package 'readline' found So backport patches [2] to add support .pc file for readline to fix the above issue. [1] https://gitlab.isc.org/isc-projects/bind9/-/commit/ba2376b9e03b9bd214242c987609a658ef24ec41 [2] https://git.savannah.gnu.org/cgit/readline.git/commit/?id=d49a9082c0e15bba8cd3d8cc0a994409cf823cac Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'recipes-core/readline/readline-5.2/readline.pc.in')
-rw-r--r--recipes-core/readline/readline-5.2/readline.pc.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes-core/readline/readline-5.2/readline.pc.in b/recipes-core/readline/readline-5.2/readline.pc.in
new file mode 100644
index 0000000..ff79d71
--- /dev/null
+++ b/recipes-core/readline/readline-5.2/readline.pc.in
@@ -0,0 +1,12 @@
1prefix=@prefix@
2exec_prefix=@exec_prefix@
3libdir=@libdir@
4includedir=@includedir@
5
6Name: Readline
7Description: Gnu Readline library for command line editing
8URL: http://tiswww.cwru.edu/php/chet/readline/rltop.html
9Version: @LIBVERSION@
10Requires.private: @TERMCAP_PKG_CONFIG_LIB@
11Libs: -L${libdir} -lreadline
12Cflags: -I${includedir}