summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2023-03-05 15:26:48 +0800
committerKhem Raj <raj.khem@gmail.com>2023-03-05 14:34:38 -0800
commit0b3e6c1973d53161fa574e4112e65290d9e0f080 (patch)
treef13f12eb89a2654811155f800e6dadb771b3fb44 /meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch
parent80740b1d3c7ce2910410a7b49ca1e3bb012d3d4a (diff)
downloadmeta-openembedded-0b3e6c1973d53161fa574e4112e65290d9e0f080.tar.gz
quagga: drop recipe
Quagga is no longer maintained since 2018[1]. Its official repository is not even available[2]. As an alternative, users can use FRRouting[3] which has been added to meta-networking[4]. [1] https://github.com/Quagga/quagga [2] https://git.savannah.gnu.org/cgit/quagga.git [3] https://frrouting.org [4] https://git.openembedded.org/meta-openembedded/tree/meta-networking/recipes-protocols/frr Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch')
-rw-r--r--meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch b/meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch
deleted file mode 100644
index 776c0958fa..0000000000
--- a/meta-networking/recipes-protocols/quagga/files/0001-configure-Check-for-readline-instead-of-main-in-libr.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 675b35b7ed416c837267e493b157167319e8f5fa Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 1 Sep 2022 11:01:53 -0700
4Subject: [PATCH] configure: Check for readline() instead of main() in
5 libreadline
6
7while checking for presense of libreadline, poke for a function which is
8provided by libreadline, main is not provided by it, so modern compiler
9toolchains may complain about it.
10
11Upstream-Status: Submitted [https://github.com/Quagga/quagga/pull/9]
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 configure.ac | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/configure.ac b/configure.ac
18index ed279f48..d444ab4a 100755
19--- a/configure.ac
20+++ b/configure.ac
21@@ -754,7 +754,7 @@ dnl [TODO] on Linux, and in [TODO] on Solaris.
22 )]
23 )]
24 )
25- AC_CHECK_LIB(readline, main, LIBREADLINE="-lreadline $LIBREADLINE",,
26+ AC_CHECK_LIB(readline, readline, LIBREADLINE="-lreadline $LIBREADLINE",,
27 "$LIBREADLINE")
28 if test $ac_cv_lib_readline_main = no; then
29 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
30--
312.37.3
32