diff options
| author | David Lamparter <equinox@diac24.net> | 2018-10-06 23:28:19 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2018-10-19 13:14:10 +0200 | 
| commit | 64537bc4d05f60c1b51f9003a6185843c0be7e6c (patch) | |
| tree | 6c751dc3755ec809a39f5fe4b55d0a6ffce677e1 /vtysh/subdir.am | |
| parent | 4108d88478a231ce8c93a23f7ae6bf573bb7acb6 (diff) | |
build: rewrite readline/curses check
We don't need termcap/tinfo/curses, those are just for libreadline.  On
most modern systems, libreadline will pull in the appropriate libs it
needs on its own, so unconditionally adding them adds an extra unneeded
dependency for us.
Still need to try with curses/... for some systems, but only after bare
readline fails.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'vtysh/subdir.am')
| -rw-r--r-- | vtysh/subdir.am | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/subdir.am b/vtysh/subdir.am index 932429a87c..66a31ffff3 100644 --- a/vtysh/subdir.am +++ b/vtysh/subdir.am @@ -24,7 +24,7 @@ noinst_HEADERS += \  	vtysh/vtysh_user.h \  	# end -vtysh_vtysh_LDADD = lib/libfrr.la @LIBCAP@ @LIBREADLINE@ @LIBS@ @CURSES@ @LIBPAM@ +vtysh_vtysh_LDADD = lib/libfrr.la @LIBCAP@ @LIBREADLINE@ @LIBS@ @LIBPAM@  EXTRA_DIST += vtysh/extract.pl  | 
